switching to simpler flask app

This commit is contained in:
lza_menace 2020-07-15 01:18:13 -07:00
parent eb6d6b388e
commit 95c5882e39
25 changed files with 264 additions and 235 deletions

7
bin/cmd Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
source .venv/bin/activate
export FLASK_APP=suchwow/app.py
export FLASK_SECRETS=config.py
export FLASK_DEBUG=1
flask $1

7
bin/dev Executable file
View file

@ -0,0 +1,7 @@
#!/bin/bash
source .venv/bin/activate
export FLASK_APP=suchwow/app.py
export FLASK_SECRETS=config.py
export FLASK_DEBUG=1
flask run

5
bin/setup Executable file
View file

@ -0,0 +1,5 @@
#!/bin/bash
python3 -m venv .venv
source .venv/bin/activate
pip3 install -r requirements.txt