Skip to content

Quickstart

bash
# 1. Install dependencies
pnpm install

# 2. Start the backend (Worker + D1 local)
pnpm dev:worker          # http://localhost:8788

# 3. Apply migrations and seed demo data
pnpm db:migrate:local
pnpm db:seed

# 4. Start the frontend
echo 'VITE_BACKEND_URL=http://localhost:8788' > app/.env
pnpm dev                 # http://localhost:5173

# 5. Login with demo credentials
#    admin@neemias.local / senha123

Main Commands

CommandAction
pnpm devFrontend Vite dev server
pnpm dev:workerWorkers dev server
pnpm dev:fullstackFrontend + Worker in parallel
pnpm build:appBuild frontend for production
pnpm testTests (pnpm -r test)
pnpm docs:devVitePress documentation server

See the repository structure to understand the monorepo organization.

Distributed under MIT License.