Initial commit

This commit is contained in:
Oliver 2023-08-29 19:10:54 -06:00 committed by GitHub
commit e6d6427ddc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
29 changed files with 4378 additions and 0 deletions

36
docker-compose.yaml Normal file
View file

@ -0,0 +1,36 @@
version: "3"
name: "template"
services:
api:
build:
context: "./api"
dockerfile: "dockerfile"
target: dev
ports:
- "6969:6969"
environment:
NODE_ENV: "dev"
healthcheck:
disable: true
volumes:
- "./api:/app"
stdin_open: true
tty: true
site:
build:
context: "./frontend"
dockerfile: "dockerfile"
target: "dev"
restart: "unless-stopped"
ports:
- "5173:5173"
- "8080:8080"
volumes:
- "./frontend:/app"
stdin_open: true
tty: true