7 lines
343 B
Bash
7 lines
343 B
Bash
NODE_ENV=test
|
|||
|
|
# Use a separate database/data area for tests. It may be on the same PostgreSQL host,
|
||
|
|
# but the database name must clearly be a test database so destructive test setup
|
||
|
|
# cannot touch production data.
|
||
|
|
TEST_DATABASE_URL=postgres://root:root@100.108.1.124:5432/hub_test
|
||
|
|
DATABASE_URL=postgres://root:root@100.108.1.124:5432/hub_test
|