Files
goyomi/.env.example
T
achmad 44b50937d5 feat(sourcetest): add -v flag with verbose manga list output
When -v is passed, test-sources.sh passes it through to go test -v.
sourcetest.Run uses testing.Verbose() to print the full manga list
from GetPopularManga and GetLatestUpdates, showing title + URL.
2026-05-14 13:23:29 +07:00

22 lines
450 B
Bash
Executable File

# PostgreSQL
POSTGRES_DB=goyomi
POSTGRES_USER=goyomi
POSTGRES_PASSWORD=goyomi
# App
DATABASE_URL=postgres://goyomi:goyomi@postgres:5432/goyomi?sslmode=disable
FLARESOLVERR_URL=http://flaresolverr:8191
FLARESOLVERR_LOG_LEVEL=info
FLARESOLVERR_PROXY=0
FLARESOLVERR_SESSION=goyomi
ADDR=:3300
# Connection pool
DB_MAX_CONNS=10
DB_MIN_CONNS=2
# Cache TTLs (seconds)
MANGA_LIST_TTL_SECONDS=600
MANGA_DETAIL_TTL_SECONDS=3600
CHAPTER_LIST_TTL_SECONDS=600