CTFd/serve.py

4 lines
109 B
Python
Raw Normal View History

2015-01-01 05:45:25 +00:00
from CTFd import create_app
app = create_app()
app.run(debug=True, threaded=True, host="0.0.0.0", port=4000)