Deployment
Docker
configure each
.env
in/frontend
and/backend
properlycheck (and adjust) each nginx configuration
run docker compose
docker compose up -d
TIP
If you don't have docker installed, checkout https://www.docker.com/.
- deploy in the cloud or your container infrastructure 🎉
Classic
Build each service seperately and deploy yourself without docker.
Frontend
INFO
The frontend operates as a "Single Page Application" SPA.
- run generate
pnpm run generate
TIP
If you don't have pnpm installed, checkout https://pnpm.io/installation to install for your operating system.
- check if everything works as it should
pnpm run preview
- Head to
http://localhost:3000/
- All generated static assets can be found in
./output/public
TIP
Further information regarding deployment can be found on https://nuxt.com/deploy
Backend
The latest information regarding deploying symfony can be found here: https://symfony.com/doc/current/deployment.html#symfony-deployment-basics
Docs
- run build
pnpm run docs:build
TIP
If you don't have pnpm installed, checkout https://pnpm.io/installation to install for your operating system.
- check if everything works as it should
pnpm run docs:preview
- Head to
http://localhost:4173/
- All generated assets can be found in
./vitepress/dist
TIP
Further information regarding deployment can be found on https://vitepress.dev/guide/deploy