mirror of
https://github.com/suitenumerique/drive.git
synced 2026-04-26 01:24:55 +02:00
We want to be able to quickly start a local isolated env for the e2e testing, we don't want to share to same db with the classic dev env because the e2e db should be empty before tests execution. And we don't want to clear our dev db every time. Also provide a new makefile handy command to launch the e2e env and the tests in one command, great.
12 lines
216 B
Plaintext
12 lines
216 B
Plaintext
# Postgresql db container configuration
|
|
POSTGRES_DB=drive_e2e
|
|
POSTGRES_USER=dinum
|
|
POSTGRES_PASSWORD=pass
|
|
|
|
# App database configuration
|
|
DB_HOST=postgresql
|
|
DB_NAME=drive_e2e
|
|
DB_USER=dinum
|
|
DB_PASSWORD=pass
|
|
DB_PORT=5432
|