Skip to content

Latest commit

 

History

History
25 lines (20 loc) · 381 Bytes

README.md

File metadata and controls

25 lines (20 loc) · 381 Bytes

compose-astro-go-nginx-demo

Command to prepare env vars

ln .env frontend/.env
ln .env backend/.env
touch db/password.txt

Commands to run (locally)

# make postgres db
docker run postgres...

# run backend
go run backend/main.go

# run frontend
cd frontend && pnpm i && pnpm start

Commands to run (on deployment)

docker compose up --build -d