17 lines
671 B
Text
17 lines
671 B
Text
|
|
# artifact-store environment configuration
|
||
|
|
#
|
||
|
|
# Copy to .env for local development. All keys are prefixed with
|
||
|
|
# ARTIFACTSTORE_; pydantic-settings reads them automatically.
|
||
|
|
|
||
|
|
# Database connection string. SQLite (with aiosqlite) for dev; PostgreSQL
|
||
|
|
# (with asyncpg) for shared deployments.
|
||
|
|
# sqlite+aiosqlite:///./var/artifactstore.db
|
||
|
|
# postgresql+asyncpg://user:pass@host:5432/artifactstore
|
||
|
|
ARTIFACTSTORE_DATABASE_URL=sqlite+aiosqlite:///./var/artifactstore.db
|
||
|
|
|
||
|
|
# Local filesystem storage root. Used by the LocalBackend (WP-0001-T003).
|
||
|
|
ARTIFACTSTORE_STORAGE_LOCAL_ROOT=./var/storage
|
||
|
|
|
||
|
|
# Python logging level: DEBUG | INFO | WARNING | ERROR
|
||
|
|
ARTIFACTSTORE_LOG_LEVEL=INFO
|