Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/xyzjonas/chef-nuxt
https://github.com/xyzjonas/chef-nuxt
bun cooking nuxt recipes
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/xyzjonas/chef-nuxt
- Owner: xyzjonas
- License: mit
- Created: 2024-07-03T10:10:37.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-13T11:53:14.000Z (5 months ago)
- Last Synced: 2024-08-23T15:55:52.870Z (5 months ago)
- Topics: bun, cooking, nuxt, recipes
- Language: Vue
- Homepage:
- Size: 470 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Chef Nuxt/Bun
Look at the [Nuxt 3 documentation](https://nuxt.com/docs/getting-started/introduction) to learn more.
## Development Server
Start the development server on `http://localhost:3000`:
```bash
bun run dev
```## Production
Build the application for production:
```bash
docker build .
```### Environment variables
```bash
# 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:
```bash
bun run preview
```