This commit introduces several new analysis documents, including Auto-Match Load Performance Analysis, Folder Picker Analysis, Monorepo Migration Summary, and various performance analysis documents. Additionally, the installation scripts are updated to reflect changes in backend service paths, ensuring proper integration with the new backend structure. These enhancements provide better documentation and streamline the setup process for users.
14 lines
241 B
Python
14 lines
241 B
Python
"""Application settings for PunimTag Web."""
|
|
|
|
from __future__ import annotations
|
|
|
|
import os
|
|
|
|
APP_TITLE = "PunimTag Web API"
|
|
APP_VERSION = "0.1.0"
|
|
|
|
# Photo storage settings
|
|
PHOTO_STORAGE_DIR = os.getenv("PHOTO_STORAGE_DIR", "data/uploads")
|
|
|
|
|