Skip to content

kuzgoga/planner

Repository files navigation

Minimal Starter

Look at the Nuxt documentation to learn more.

Figma

https://www.figma.com/design/zAV1P8R1ro5pdvI3j8ZAi0/Untitled?node-id=0-1&p=f&t=uCkypGOeFQeM3FBw-0

Setup

Make sure to install dependencies:

bun install

Development Server

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

bun run dev

Docker 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: host

Dotenv 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/sample

Scalar is located at http://localhost:3000/docs

Production

Build the application for production:

bun run build

Locally preview production build:

bun run preview

Check out the deployment documentation for more information.

About

No description, website, or topics provided.

Resources

Stars

0 stars

Watchers

1 watching

Forks

Releases

No releases published

Packages

 
 
 

Contributors