-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathflask_yeoman.py
38 lines (29 loc) · 1.33 KB
/
flask_yeoman.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
from flask import Blueprint, current_app, send_file, render_template_string
from werkzeug.exceptions import NotFound
import os
flask_yeoman = Blueprint('flask_yeoman', __name__)
@flask_yeoman.route('/', defaults={'path': 'index.html'})
@flask_yeoman.route('/<path:path>')
def serve_index(path):
flask_yeoman_debug = int(os.environ.get('FLASK_YEOMAN_DEBUG', False))
fpath = 'dist'
# While developing, we serve the app directory
if flask_yeoman_debug:
fpath = 'app'
root_path = current_app.root_path
default_path = os.path.join(root_path, fpath)
default_path_abs = os.path.join(default_path, path)
if os.path.isfile(default_path_abs):
if path == 'index.html':
# If index.html is requested, we inject the Flask current_app config
return render_template_string(open(default_path_abs).read().decode('utf-8'),
config=current_app.config)
return send_file(default_path_abs)
# While development, we must check the .tmp dir as fallback
if flask_yeoman_debug:
# The .tmp dir is used by compass and for the template file
alt_path = os.path.join(root_path, '.tmp')
alt_path_abs = os.path.join(alt_path, path)
if os.path.isfile(alt_path_abs):
return send_file(alt_path_abs)
raise NotFound()