6 lines
257 B
TypeScript
6 lines
257 B
TypeScript
// Set env vars before any app code is imported
|
|
process.env.DATABASE_URL = "postgresql://fedjens@localhost:5432/eyrun_test";
|
|
process.env.JWT_SECRET = "test-secret-that-is-at-least-32-characters-long";
|
|
process.env.PORT = "0";
|
|
process.env.HOST = "127.0.0.1";
|