aboutsummaryrefslogtreecommitdiff
path: root/app/__init__.py
blob: d2b708857b2e0a94f50453f5a7839ee006e37c25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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