Picture added to first journal

This commit is contained in:
2026-08-30 10:35:13 +03:00
parent 987774a320
commit 334d65c4d8
3 changed files with 2 additions and 1 deletions
+1 -1
View File
@@ -21,7 +21,7 @@ from werkzeug.security import check_password_hash, generate_password_hash
BASE_DIR = Path(__file__).resolve().parent
DATABASE = Path(os.environ.get("DATABASE_PATH", BASE_DIR / "data" / "eternity.db"))
UPLOAD_FOLDER = Path(os.environ.get("UPLOAD_FOLDER", BASE_DIR / "data" / "uploads"))
UPLOAD_FOLDER = Path(os.environ.get("UPLOAD_FOLDER", DATABASE.parent / "uploads"))
app = Flask(__name__)
app.config.update(