Skip to content
Merged

Dev #21

Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ python -m venv venv
source ./venv/bin/activate
pip install --upgrade pip
pip install -e .
# Seting the db url is optiopnal, the default will be in the app installation folder
# Setting the db url is optional, the default will be in the app installation folder
export C3G_SQLALCHEMY_DATABASE_URI="sqlite:////tmp/my_test_db.sql"
# initialyse the db
flask --app project_tracking init-db
Expand All @@ -45,7 +45,7 @@ DOC:



Once the server is running, you can still initialise the database, you can even flush it clear of any entry with
Once the server is running, you can still initialise the database, you can even flush it clear of any entry with:

```bash
# WARNING this will erase all entry to you Database!
Expand Down
Loading