05/31 Phase 1: refactor

This commit is contained in:
2026-05-31 10:46:29 -04:00
parent b0c0bd363b
commit fe7ce58f7a
3 changed files with 8 additions and 1 deletions
+1
View File
@@ -8,3 +8,4 @@ FLASK_ENV=production
APP_CURRENCY=USD
APP_CURRENCY_SYMBOL=$
APP_TIMEZONE=Asia/Ho_Chi_Minh
FLASK_APP=wsgi:app
+1 -1
View File
@@ -101,7 +101,7 @@ MAX_CONTENT_LENGTH=10485760
FLASK_ENV=production
APP_CURRENCY=USD
APP_CURRENCY_SYMBOL=$
APP_TIMEZONE=Asia/Ho_Chi_Minh
APP_TIMEZONE=America/New_York
```
```bash
+6
View File
@@ -1,3 +1,9 @@
import sys
import os
# Ensure the project root is on the path so 'app' package is always found
sys.path.insert(0, os.path.dirname(os.path.abspath(__file__)))
from app import create_app
app = create_app()