You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A full-stack wardrobe management app that lets you catalog, organize, and manage your clothing items with images. Built as a personal project to explore modern TypeScript tooling end-to-end.
.env file with DATABASE_URL, AWS credentials, and Kinde credentials
Development
# Install backend dependencies
bun install
# Install frontend dependenciescd frontend && bun install &&cd ..
# Build the frontend (backend serves the static build)cd frontend && bun run build &&cd ..
# Start the backend server (serves API + static frontend on :8080)
bun run dev