move development of formbricks HQ to monorepo

This commit is contained in:
Matthias Nannt
2022-11-24 12:29:18 +01:00
parent 74b1cb0687
commit 0a17676981
76 changed files with 5302 additions and 640 deletions

25
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,25 @@
version: "3.3"
services:
postgres:
image: postgres:15-alpine
volumes:
- postgres:/var/lib/postgresql/data
environment:
- POSTGRES_DB=formbricks
- POSTGRES_USER=postgres
- POSTGRES_PASSWORD=postgres
ports:
- 5432:5432
mailhog:
image: mailhog/mailhog
# network_mode: service:app
logging:
driver: "none" # disable saving logs
ports:
- 8025:8025 # web ui
- 1025:1025 # smtp server
volumes:
postgres:
driver: local