updated README.md to current project status
This commit is contained in:
parent
9ceb48249a
commit
2bd355130d
24
README.md
24
README.md
@ -25,11 +25,33 @@ $ pip install -r requirements.txt
|
|||||||
|
|
||||||
## Database, Databass
|
## Database, Databass
|
||||||
The git doesn't come with a database of users, you have to make one.
|
The git doesn't come with a database of users, you have to make one.
|
||||||
make sure you have the virtual environment enabled.
|
make sure you have the virtual environment enabled. the data directory is in
|
||||||
|
gitignore because we don't want to version control the database and other files
|
||||||
|
that might end up there later.
|
||||||
|
|
||||||
```
|
```
|
||||||
|
$ cd verse
|
||||||
|
$ mkdir data
|
||||||
|
```
|
||||||
|
You might need to remove the migrations folder, this is where flask-migrate keeps
|
||||||
|
track of all the database upgrades and migrations. but so far we have none and
|
||||||
|
for deploydb to work this folder needs to not be there yet.
|
||||||
|
```
|
||||||
|
$ rm -r migrations
|
||||||
$ python deploydb.py
|
$ python deploydb.py
|
||||||
```
|
```
|
||||||
|
Database is made and put in the data folder. ready to go
|
||||||
|
|
||||||
|
## Flask scripts
|
||||||
|
The flask scripts are in the folder verse, while the distribusi code is in the
|
||||||
|
folder distribusi, I would like to keep them separated so we know, what is the
|
||||||
|
webapplication and what is the original distribusi software, this might also
|
||||||
|
allow power users with SSH later on.
|
||||||
|
|
||||||
|
```
|
||||||
|
$ cd verse
|
||||||
|
$ python start.py
|
||||||
|
```
|
||||||
|
|
||||||
## Distribusi
|
## Distribusi
|
||||||
This is currently added as a git submodule but I have no clue how that actually works
|
This is currently added as a git submodule but I have no clue how that actually works
|
||||||
|
Loading…
Reference in New Issue
Block a user