mirror of
https://github.com/aljazceru/CTFd.git
synced 2025-12-17 14:04:20 +01:00
9 lines
189 B
Python
9 lines
189 B
Python
from gevent import monkey
|
|
monkey.patch_all()
|
|
from CTFd import create_app
|
|
|
|
app = create_app()
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True, threaded=True, host="127.0.0.1", port=4000)
|