Compare commits

..

2 Commits

Author SHA1 Message Date
7ba4063a84 add gitignore to protect env stuff 2025-06-01 11:15:00 -07:00
6f693c93dc add flaskenv example for local development 2025-06-01 11:14:09 -07:00
2 changed files with 7 additions and 0 deletions

4
.flaskenv.example Normal file
View File

@@ -0,0 +1,4 @@
# use this when developing locally with `flask run`
FLASK_APP=todo.py
FLASK_RUN_HOST="some_host_name"
FLASK_DEBUG="true"

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
.env
.flaskenv
__pycache__/