Phase 2: dependencies
This commit is contained in:
parent
51289ef456
commit
21d1da3437
3 changed files with 17 additions and 0 deletions
4
.env
4
.env
|
|
@ -0,0 +1,4 @@
|
|||
FLASK_APP=run.py
|
||||
FLASK_DEBUG=1
|
||||
SECRET_KEY=change-me-to-a-random-string
|
||||
DATABASE_URL=sqlite:///app.db
|
||||
6
.gitignore
vendored
6
.gitignore
vendored
|
|
@ -0,0 +1,6 @@
|
|||
.venv/
|
||||
__pycache__/
|
||||
*.pyc
|
||||
instance/
|
||||
.env
|
||||
app.db
|
||||
|
|
@ -0,0 +1,7 @@
|
|||
Flask==3.0.3
|
||||
Flask-SQLAlchemy==3.1.1
|
||||
Flask-Login==0.6.3
|
||||
Flask-WTF==1.2.1
|
||||
Flask-Migrate==4.0.7
|
||||
python-dotenv==1.0.1
|
||||
email-validator==2.1.1
|
||||
Loading…
Add table
Reference in a new issue