Copy the .env.example file to .env and edit the variables to your liking.
cp .env.example .envUp the containers with docker-compose and build the images.
docker-compose up -d --buildGo inside the container
docker-compose exec frontend bashBuild the project, Select yarn for package manager
cd / && npx nuxi@latest init app -f Enjoy!
cd app && yarn dev
Build for production
docker compose -f docker-compose.prod.yml up --build -d