This is a T3 Stack project bootstrapped with create-t3-app
.
Creating an AI powered task manager
- Add all required env variable into
compose.yml
- Run
docker compose up
Application run on 3000
- Install Dependencies
pnpm install
- Add all the required env variables into
.env
file
DATABASE_URL="postgresql://..."
NEXT_PUBLIC_CLERK_PUBLISHABLE_KEY="..."
CLERK_SECRET_KEY="..."
NEXT_PUBLIC_CLERK_SIGN_UP_URL=/signup
NEXT_PUBLIC_CLERK_SIGN_IN_URL=/login
NEXT_PUBLIC_CLERK_SIGN_IN_FALLBACK_REDIRECT_URL=/dashboard
NEXT_PUBLIC_CLERK_SIGN_UP_FALLBACK_REDIRECT_URL=/dashboard
OPENROUTER_API_KEY="..."
- Push schema to database
pnpm db:push
- Run in dev mode
pnpm dev
Application run on 3000