easyctf-2017/server/app.py

31 lines
869 B
Python
Raw Normal View History

2015-12-23 06:26:27 +00:00
from argparse import ArgumentParser
2015-12-21 07:04:00 +00:00
from flask import Flask
2015-12-23 06:26:27 +00:00
2015-12-21 21:08:50 +00:00
import config
2015-12-23 06:26:27 +00:00
import json
2015-12-23 01:37:38 +00:00
2015-12-21 07:04:00 +00:00
app = Flask(__name__)
2015-12-21 21:08:50 +00:00
app.secret_key = config.SECRET
2015-12-21 07:04:00 +00:00
2015-12-23 06:26:27 +00:00
@app.route("/api")
def api():
return json.dumps({ "success": 1, "message": "The API is online." })
2015-12-21 16:08:47 +00:00
if __name__ == "__main__":
2015-12-23 06:26:27 +00:00
with app.app_context():
parser = ArgumentParser(description="EasyCTF Server Configuration")
parser.add_argument("-d", "--debug", action="store_true", help="Run the server in debug mode.", default=False)
args = parser.parse_args()
keyword_args, _ = dict(args._get_kwargs()), args._get_args()
app.debug = keyword_args["debug"]
app.config["SQLALCHEMY_DATABASE_URI"] = "mysql://root:i_hate_passwords@localhost/easyctf"
app.config["SQLALCHEMY_TRACK_MODIFICATIONS"] = False
from api.models import db
db.init_app(app)
db.create_all()
print db
app.run(host="0.0.0.0", port=8000)