Skip to content

JagTheFriend/Tactiq

Repository files navigation

Tactiq

This is a T3 Stack project bootstrapped with create-t3-app.

Goal

Creating an AI powered task manager

Tools Used:

How To Run

Docker

  1. Add all required env variable into compose.yml
  2. Run
docker compose up

Application run on 3000

Manually

  1. Install Dependencies
pnpm install
  1. 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="..."
  1. Push schema to database
pnpm db:push
  1. Run in dev mode
pnpm dev

Application run on 3000