File size: 310 Bytes
58c2772
 
 
 
 
 
 
a447c04
 
58c2772
 
 
 
 
75107cd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import os
from flask import Flask
from views import views

app = Flask(__name__)
app.register_blueprint(views, url_prefix='/reddit-app')

print(os.environ)

@app.route('/', methods=['POST', 'GET'])
def reddit_app_home():
    return

if __name__ == '__main__':
    app.run(debug=True, host="0.0.0.0", port=7860)