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
# Install dependencies
pnpm install
# Start the project with development mode
pnpm dev
# Build the project and start this with production mode
pnpm build
pnpm start
Using Docker
# Build docker image (you can change tag or container name.)
DOCKER_BUILDKIT=1 docker build \
--build-arg NEXT_PUBLIC_SUPABASE_URL=https://example.supabase.co \
--build-arg NEXT_PUBLIC_SUPABASE_PUBLISHABLE_KEY=example-publishable-key \
-t resume .# Run docker container
docker run -d -p 3000:3000 --env-file=.env --restart=unless-stopped resume
Environment Variables
Require Supabase API key for database and authentication.