-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy path.env.example
More file actions
19 lines (15 loc) · 1.14 KB
/
Copy path.env.example
File metadata and controls
19 lines (15 loc) · 1.14 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# ─── Database ─────────────────────────────────────────────────────────────────
# Format: postgresql+asyncpg://user:password@host:port/dbname
DATABASE_URL=postgresql+asyncpg://postgres:postgres@localhost:5432/moniepoint
# ─── Application ──────────────────────────────────────────────────────────────
API_PORT=8080
API_HOST=0.0.0.0
DEBUG=false
# ─── Data Import ──────────────────────────────────────────────────────────────
# Absolute or relative path to the folder containing activities_YYYYMMDD.csv files
DATA_DIR=./data
# Rows processed per INSERT batch during CSV import (tune for memory vs speed)
IMPORT_BATCH_SIZE=5000
# -- Testing --------------------------------------------------------------
TEST_DATABASE_URL=sqlite+aiosqlite:///:memory:
TEST_API_PORT=8080