Skip to content

Commit

Permalink
Update __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
TamirPol authored Dec 15, 2024
1 parent 0fa4fdb commit 5700690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions website/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ def create_app():
app = Flask(__name__)

# Add secret key and config database
app.config["SECRET_KEY"] = "Simba"
app.config["SECRET_KEY"] = ""
app.config["SQLALCHEMY_DATABASE_URI"] = f'sqlite:///{DB_NAME}'


Expand Down Expand Up @@ -80,4 +80,4 @@ def create_database(app):
"""
if not path.exists("website/" + DB_NAME):
db.create_all(app=app)
print("Database created")
print("Database created")

0 comments on commit 5700690

Please sign in to comment.