Files
CTFd/serve.py
Kevin Chung f48a0cdacd Hints (#232)
* 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
2017-03-28 21:17:56 -04:00

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)