Files
tiku-backend.net/.env.example
xiong 1aa1ed4829
Some checks failed
ci / release-gate (push) Has been cancelled
chore(dev): simplify local Docker startup
2026-08-04 17:46:01 +08:00

20 lines
826 B
Plaintext

# Copy this file to .env before starting local infrastructure or .NET runtimes.
# These credentials match compose.yaml defaults and are for local development only.
TIKU_POSTGRES_DB=tiku
TIKU_POSTGRES_USER=tiku
TIKU_POSTGRES_PASSWORD=tiku_dev
TIKU_POSTGRES_PORT=5432
TIKU_REDIS_PORT=6379
ASPNETCORE_ENVIRONMENT=Development
DOTNET_ENVIRONMENT=Development
ConnectionStrings__Database="Host=127.0.0.1;Port=5432;Database=tiku;Username=tiku;Password=tiku_dev"
ConnectionStrings__Redis="127.0.0.1:6379,abortConnect=false"
Tenancy__Resolution__PlatformHosts__0=localhost
Tenancy__Resolution__PlatformHosts__1=127.0.0.1
# To access the platform API from another device on the LAN, uncomment this
# setting and replace the address with this development machine's current LAN IP.
# Tenancy__Resolution__PlatformHosts__2=192.168.1.100