removed features.seed-db
Some checks failed
Build and Deploy Demo App / test (push) Successful in 11s
Build and Deploy Demo App / build (push) Successful in 15s
Build and Deploy Demo App / deploy (push) Failing after 2m14s
Build and Deploy Demo App / scan (push) Successful in 19s

This commit is contained in:
2025-11-26 13:58:30 +03:30
parent ea335c96d0
commit 0c5eaa19cd

1
app.py
View File

@@ -16,6 +16,5 @@ db.init_app(app)
@app.route('/') @app.route('/')
def index(): def index():
with app.app_context(): with app.app_context():
Feature.seed_db()
features = Feature.query.all() features = Feature.query.all()
return render_template('index.html', features=features) return render_template('index.html', features=features)