mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-17 14:04:20 +01:00
* Switching to Flask-Migrate to create tables/database. Adding Hints & Unlocks. * Adding db.create_all call for sqlite db's (sqlite is not properly handled with alembic yet) * Python 3 testing works properly with 3.5 * Adding admin side of hints * Hints are viewable for users
5 lines
112 B
Python
5 lines
112 B
Python
from CTFd import create_app
|
|
|
|
app = create_app()
|
|
app.run(debug=True, threaded=True, host="127.0.0.1", port=4000)
|