Curie-Web/app/__init__.py

13 lines
330 B
Python
Raw Normal View History

2020-06-24 19:09:05 +01:00
from flask import Flask
# Config Values
# location where file uploads will be stored
UPLOAD_FOLDER = './app/static/uploads'
# needed for session security, the flash() method in this case stores the message
# in a session
SECRET_KEY = 'Sup3r$3cretkey'
app = Flask(__name__)
app.config.from_object(__name__)
from app import views