Run scripts.

Commit
648ae3082e7491ad2e3017be43f0b0dafc36202f
Author
Marius Peter <marius.peter@tutanota.com>
Author date
Committer
Marius Peter <marius.peter@tutanota.com>
Committer date
Changed files
run-development.sh
index 00000000..7011cc3c 000000..100755
@@ -0,0 +1,9 @@
1 Added: #! /bin/bash
2 Added:
3 Added: source .venv/bin/activate
4 Added: pip freeze > requirements.txt
5 Added: echo Saved required Python packages to requirements.txt
6 Added: export FLASK_APP=app
7 Added: export FLASK_ENV=development
8 Added: # export FLASK_DEBUG=1
9 Added: flask run
run-production.sh
index 00000000..d144e6af 000000..100755
@@ -0,0 +1,6 @@
1 Added: #! /bin/bash
2 Added:
3 Added: source .venv/bin/activate
4 Added: export FLASK_APP=app
5 Added: export FLASK_ENV=production
6 Added: flask run
run.sh
index 79272343..00000000 100755..000000
@@ -1,7 +0,0 @@
1 Removed: #! /bin/bash
2 Removed:
3 Removed: source .venv/bin/activate
4 Removed: export FLASK_APP=app
5 Removed: export FLASK_ENV=development
6 Removed: # export FLASK_DEBUG=1
7 Removed: flask run