mirror of
https://github.com/SrIzan10/starters.git
synced 2026-05-01 11:05:16 +00:00
14 lines
256 B
Python
14 lines
256 B
Python
from flask import Flask, jsonify
|
|
import os
|
|
|
|
app = Flask(__name__)
|
|
|
|
|
|
@app.route('/')
|
|
def index():
|
|
return jsonify({"Choo Choo": "Welcome to your Flask app 🚅"})
|
|
|
|
|
|
if __name__ == '__main__':
|
|
app.run(debug=True, port=os.getenv("PORT", default=5000))
|