Init project and first source generation

This commit is contained in:
nurmatthias
2024-09-04 19:02:18 +02:00
commit 1f7dfee78f
13 changed files with 881 additions and 0 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
version: '2'
services:
db:
image: postgres:11-alpine
ports:
- "5432:5432"
environment:
- "POSTGRES_DB=etecture"
- "POSTGRES_USER=etecture"
- "POSTGRES_PASSWORD=etecture"
- "PGDATA=/var/lib/postgresql/data/etecture"