refactored database name

This commit is contained in:
0ceanSlim 2024-02-05 12:27:54 -05:00
parent 98751048d4
commit 0b6262f8d4
3 changed files with 2 additions and 1 deletions

1
.gitignore vendored Normal file
View File

@ -0,0 +1 @@
__pycache__

2
app.py
View File

@ -3,7 +3,7 @@ import sqlite3, os
app = Flask(__name__)
DATABASE = "static/database.db"
DATABASE = "src/database.db"
def connect_db():