The user-interface for the Produce Goose server.
Look at the nuxt 3 documentation to learn more.
Make sure to install the dependencies:
# npm
npm installStart the development server on http://localhost:3000
npm run devBuild the application for production:
npm run buildLocally preview production build:
npm run previewCheckout the deployment documentation for more information.
# Build the image
docker build --build-arg SSR_BASE_URL=http://host.docker.internal:8080/api --build-arg CLIENT_BASE_URL=/api -t produce-goose:frontend .
# Run the container
docker run -p 3000:3000 --name produce-goose-frontend produce-goose:frontend