Skip to content

Latest commit

 

History

History

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

README.md

@ever-works/web

The main Next.js 16 directory website application within the Ever Works monorepo.

For full documentation, see the root README.md.

Quick Reference

# From monorepo root
pnpm run dev:web          # Start web app dev server
pnpm run --filter @ever-works/web build   # Build web app only

# From this directory (apps/web/)
pnpm dev                  # Start dev server (http://localhost:3000)
pnpm build                # Production build
pnpm start                # Serve production build
pnpm lint                 # ESLint
pnpm tsc --noEmit         # Type-check
pnpm db:generate          # Generate Drizzle migrations
pnpm db:migrate           # Apply migrations
pnpm db:seed              # Seed database
pnpm db:studio            # Open Drizzle Studio GUI

Environment Setup

cp .env.example .env.local

Authentication secrets:

  • Set AUTH_SECRET for production deployments.
  • COOKIE_SECRET is still required for JWT/cookie handling.
  • If AUTH_SECRET is missing, runtime will fall back to COOKIE_SECRET, but that should be treated as a safety net rather than the primary deployment contract.

See the root README.md for full environment variable documentation.