ui get form new and edit mode

This commit is contained in:
ycc
2023-08-23 21:33:00 +02:00
parent be4545e603
commit 82012d36af
27 changed files with 1992 additions and 124 deletions

21
db/docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
version: '3.1'
services:
pg:
image: postgres:alpine
restart: always
volumes:
- ./autoload:/docker-entrypoint-initdb.d
environment:
POSTGRES_DB: test
POSTGRES_USER: test
POSTGRES_PASSWORD: test
ports:
- 5432:5432
adminer:
image: adminer
restart: always
ports:
- 8888:8080