aboutsummaryrefslogtreecommitdiffstats
path: root/backend/config.ts
blob: 25857366acac2d3633c67158b810f27e52b43a83 (plain)
1
2
3
4
5
6
if (!process.env.POSTGRES_CONNECTION_STRING) {
    throw new Error("POSTGRES_CONNECTION_STRING env var not defined!");
}

export const postgresConnectionString = process.env.POSTGRES_CONNECTION_STRING;
export const port = process.env.PORT || 4000;