# The port the server will listen on. # If not set, defaults to 3000. # Copy this file to .env and change the port if needed. PORT=3001 HOST=0.0.0.0 # Local development database URL (TimescaleDB/PostgreSQL) # Example below matches: docker run -p 15435:5432 -e POSTGRES_DB=fundamental -e POSTGRES_USER=postgres -e POSTGRES_PASSWORD=postgres timescale/timescaledb:2.15.2-pg16 DATABASE_URL=postgres://postgres:postgres@127.0.0.1:15435/fundamental # SQLx offline mode toggle. Set to true if you generated sqlx-data.json via `sqlx prepare`. SQLX_OFFLINE=false # 在测试/CI中跳过 HTTP 监听(默认不跳过) # 置为 1/true/yes/on 时,main 不会绑定端口与监听 # SKIP_SERVER_LISTEN=true