https://github.com/jagthefriend/tactiq
Creating an AI powered task manager
https://github.com/jagthefriend/tactiq
acernity-ui ai docker heroui nextjs postgresql prisma-orm react server-actions server-side tailwindcss typescript
Last synced: 3 months ago
JSON representation
Creating an AI powered task manager
- Host: GitHub
- URL: https://github.com/jagthefriend/tactiq
- Owner: JagTheFriend
- Created: 2025-06-22T04:57:51.000Z (4 months ago)
- Default Branch: main
- Last Pushed: 2025-06-23T08:25:14.000Z (4 months ago)
- Last Synced: 2025-06-23T09:29:54.593Z (4 months ago)
- Topics: acernity-ui, ai, docker, heroui, nextjs, postgresql, prisma-orm, react, server-actions, server-side, tailwindcss, typescript
- Language: TypeScript
- Homepage: https://tactiq.vercel.app
- Size: 231 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Tactiq
This is a [T3 Stack](https://create.t3.gg/) project bootstrapped with `create-t3-app`.
## Goal
Creating an AI powered task manager
## Tools Used:
- [Next.js](https://nextjs.org)
- [Prisma](https://prisma.io)
- [PostgreSQL](https://www.postgresql.org/)
- [Tailwind CSS](https://tailwindcss.com)
- [HeroUI](https://www.heroui.com/)
- [Acernity](https://ui.aceternity.com/)## How To Run
### Docker
1. Add all required env variable into `compose.yml`
2. Run```bash
docker compose up
```Application run on [3000](http://localhost:3000)
### Manually
1. Install Dependencies
```bash
pnpm install
```2. Add all the required env variables into `.env` file
```bash
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=/dashboardOPENROUTER_API_KEY="..."
```4. Push schema to database
```bash
pnpm db:push
```4. Run in dev mode
```bash
pnpm dev
```Application run on [3000](http://localhost:3000)