Added more env variables

This commit is contained in:
Marcin-Ramotowski 2025-03-16 15:44:49 +00:00
parent b2dc4856cb
commit ff07c3433e
2 changed files with 4 additions and 2 deletions

View File

@ -11,7 +11,7 @@ if __name__ == "__main__":
app = Flask(__name__)
app.config['SQLALCHEMY_DATABASE_URI'] = os.getenv('SQLALCHEMY_DATABASE_URI')
app.config['SQLALCHEMY_TRACK_MODIFICATIONS'] = True
app.config['JWT_SECRET_KEY'] = 'changeme'
app.config['JWT_SECRET_KEY'] = os.getenv('JWT_SECRET_KEY', 'changeme')
app.register_blueprint(user_bp)
app.register_blueprint(task_bp)
db.init_app(app)

View File

@ -129,9 +129,11 @@ def init_db():
"""Create default admin account if database is empty"""
with db.session.begin():
if not User.query.first(): # Check if user table is empty
admin_username = os.getenv("TODOLIST_ADMIN_USERNAME", "admin")
admin_email = os.getenv("TODOLIST_ADMIN_EMAIL", "admin@example.pl")
admin_password = os.getenv("TODOLIST_ADMIN_PASSWORD", "admin")
hashed_password = generate_password_hash(admin_password)
admin = User(username='admin', email='admin@example.pl', password=hashed_password, role='Administrator')
admin = User(username=admin_username, email=admin_email, password=hashed_password, role='Administrator')
db.session.add(admin)
db.session.commit()