Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -43,11 +43,13 @@ def getresource():
|
|
43 |
res = request.args.get('r')
|
44 |
return app.send_static_file(res)
|
45 |
|
46 |
-
@ app.route('/novo-front
|
47 |
-
def novofront(
|
48 |
-
|
49 |
-
|
50 |
-
|
|
|
|
|
51 |
|
52 |
if __name__ == '__main__':
|
53 |
mode = os.environ.get('FLASK_ENV', 'production')
|
|
|
43 |
res = request.args.get('r')
|
44 |
return app.send_static_file(res)
|
45 |
|
46 |
+
@ app.route('/novo-front/index')
|
47 |
+
def novofront():
|
48 |
+
return app.send_static_file('novo-front/index.html')
|
49 |
+
|
50 |
+
@ app.route('/novo-front/css/styles.css')
|
51 |
+
def novofrontcss():
|
52 |
+
return app.send_static_file('novo-front/css/styles.css')
|
53 |
|
54 |
if __name__ == '__main__':
|
55 |
mode = os.environ.get('FLASK_ENV', 'production')
|