Initial commit

This commit is contained in:
2020-12-12 18:38:31 +01:00
commit f877b78f33
117 changed files with 23104 additions and 0 deletions

3
compose/dev/.env Normal file
View File

@@ -0,0 +1,3 @@
POSTGRES_USER=postgres
POSTGRES_PASSWORD=postgres
POSTGRES_DB=confient_dev

View File

@@ -0,0 +1,11 @@
version: "3"
services:
postgres:
image: postgres:latest
ports:
- 127.0.0.1:5432:5432
environment:
- POSTGRES_USER=$POSTGRES_USER
- POSTGRES_DB=$POSTGRES_DB
- POSTGRES_PASSWORD=$POSTGRES_PASSWORD