Skip to content

xyzjonas/chef-nuxt

Repository files navigation

Chef Nuxt/Bun

Look at the Nuxt 3 documentation to learn more.

Development Server

Start the development server on http://localhost:3000:

bun run dev

Production

Build the application for production:

docker build .

Environment variables

# backend base url
API_URL=http://localhost:8000
# assets storage url
IMAGES_URL=http://localhost:8000/images
# key for JWT signing
SECRET_KEY=lkiawdlajdlandkauboqih2oahao2ahka2
# admin username/password
MASTER_USERNAME=chef
MASTER_PASSWORD=chef

Locally preview production build:

bun run preview