Spaces:
Paused
Paused
Commit
·
4d8c345
1
Parent(s):
c54ad0d
updated
Browse files
app.py
CHANGED
|
@@ -32,6 +32,7 @@ app = Flask(
|
|
| 32 |
static_url_path='/static', # this is the URL route, must start with `/`
|
| 33 |
template_folder='backend/templates'
|
| 34 |
)
|
|
|
|
| 35 |
app.config['SECRET_KEY'] = 'your-secret-key'
|
| 36 |
#
|
| 37 |
# Configure the database connection
|
|
|
|
| 32 |
static_url_path='/static', # this is the URL route, must start with `/`
|
| 33 |
template_folder='backend/templates'
|
| 34 |
)
|
| 35 |
+
app.instance_path = os.path.join(os.getcwd(), 'instance')
|
| 36 |
app.config['SECRET_KEY'] = 'your-secret-key'
|
| 37 |
#
|
| 38 |
# Configure the database connection
|