Author: Pedro Lucas Porcellis <pedrolucasporcellis@gmail.com>
Add a simple run script and some other folders to ignore
.gitignore | 1 + run.sh | 4 ++++
diff --git a/.gitignore b/.gitignore index 4c49bd78f1d08f2bc09fa0bd8191ed38b7dce5e3..3b72af06f63e14ea65f6aac0929f38aa57590d94 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ .env +__pycache__ diff --git a/run.sh b/run.sh new file mode 100644 index 0000000000000000000000000000000000000000..1ecf09dcd47e28567951e972afc55f3aec038969 --- /dev/null +++ b/run.sh @@ -0,0 +1,4 @@ +export FLASK_APP=src/__init__.py +export FLASK_ENV=development + +flask run