You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
401 B
Python
23 lines
401 B
Python
from flask import Flask, jsonify
|
|
from flask_cors import CORS
|
|
|
|
# config
|
|
DEBUG = True
|
|
|
|
# app init
|
|
app = Flask(__name__)
|
|
app.config.from_object(__name__)
|
|
|
|
# enable CORS. Note in this config it allows requests from all inbound domains.
|
|
CORS(app)
|
|
|
|
|
|
# sanity check route
|
|
@app.route('/ping', methods=['GET'])
|
|
def ping_route():
|
|
return jsonify('You pass butter')
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run()
|