Added html
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2022-08-15 22:55:04 +02:00
parent 59d33034df
commit e4b1f79a61
16 changed files with 1577 additions and 103 deletions

View File

@@ -0,0 +1,7 @@
target/
.git/
.cuddle/
scripts/
cuddle.yaml
local.sh
README.md

View File

@@ -0,0 +1,15 @@
version: '3.7'
services:
db:
image: postgres:13.5
restart: always
environment:
- POSTGRES_DB=cibus
- POSTGRES_USER=cibus
- POSTGRES_PASSWORD=somenotverysecurepassword
- DATABASE_URL="postgres://cibus:somenotverysecurepassword@localhost:5432/cibus"
ports:
- 5432:5432
volumes:
- ./data/postgres:/var/lib/postgresql/data