-
-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
2 changed files
with
28 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
web: make && gunicorn app:app --log-file - |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
""" | ||
This is a simple cheatsheet webapp. | ||
""" | ||
import os | ||
|
||
from flask import Flask, send_from_directory | ||
from flask_sslify import SSLify | ||
|
||
DIR = os.path.dirname(os.path.realpath(__file__)) | ||
ROOT = os.path.join(DIR, 'docs', '_build', 'html') | ||
|
||
app = Flask(__name__) | ||
if 'DYNO' in os.environ: | ||
sslify = SSLify(app) | ||
|
||
@app.route('/<path:path>') | ||
def static_proxy(path): | ||
"""Static files proxy""" | ||
return send_from_directory(ROOT, path) | ||
|
||
@app.route('/') | ||
def index_redirection(): | ||
"""Redirecting index file""" | ||
return send_from_directory(ROOT, 'index.html') | ||
|
||
if __name__ == "__main__": | ||
app.run(debug=True) |