diff --git a/app.py b/app.py new file mode 100644 index 0000000..de3ce5f --- /dev/null +++ b/app.py @@ -0,0 +1,11 @@ +from flask import Flask, render_template + +app = Flask(__name__) + + +@app.route('/') +def hello_world(): # put application's code here + return render_template('home.html') + +if __name__ == '__main__': + app.run(host='0.0.0.0') diff --git a/static/css/styles.scss b/static/css/styles.scss new file mode 100644 index 0000000..e69de29 diff --git a/templates/home.html b/templates/home.html new file mode 100644 index 0000000..001d90f --- /dev/null +++ b/templates/home.html @@ -0,0 +1,10 @@ + + +
+ +