Look at the Nuxt documentation to learn more.
https://www.figma.com/design/zAV1P8R1ro5pdvI3j8ZAi0/Untitled?node-id=0-1&p=f&t=uCkypGOeFQeM3FBw-0
Make sure to install dependencies:
bun installStart the development server on http://localhost:3000:
bun run devDocker Compose file for development:
services:
database:
image: postgres
restart: always
shm_size: 128mb
volumes:
- ./postgres:/data/postgres
environment:
POSTGRES_USER: planner
POSTGRES_PASSWORD: superpass
POSTGRES_DB: planner
network_mode: hostDotenv file for development:
NUXT_SESSION_PASSWORD=0a021f1a745ff66a040e7321f6aff9992a3d95b516f59bdab7b887cc6b2b925b
SALT_ROUNDS=10
DB_HOST="127.0.0.1"
DB_PORT="5432"
DB_USER="planner"
DB_PASSWORD="superpass"
MOUNT="absolute/path/to/storage"
MAIL_HOST="smtp.gmail.com"
MAIL_USER="me@gmail.com"
MAIL_PASSWORD="mysuperpass"
MAIL_PORT="465"Execute command below to add example data:
curl -X POST http://localhost:3000/api/sampleScalar is located at http://localhost:3000/docs
Build the application for production:
bun run buildLocally preview production build:
bun run previewCheck out the deployment documentation for more information.