This is a T3 Stack project bootstrapped with create-t3-app
. It is very much still in development.
To learn more about the T3 Stack, take a look at the following resources:
- Documentation
- Learn the T3 Stack — Check out these awesome tutorials
You can check out the create-t3-app GitHub repository — your feedback and contributions are welcome!
We have docker setup (frontend broken at the moment)! So you can run the following commands:
docker-compose up --build -d
If you just want to run the frontend you can run:
npm run dev
If you just want to run the database or frontend you can run:
docker-compose up -d <database|frontend>
To migrate the Prisma schema changes to database, you can run:
npx prisma migrate dev --name <message>
To sync the Prisma schema changes to the database, you can run:
npx prisma migrate
To start Prisma Studio (GUI tool for database), you can run:
npx prisma studio