Keep on top of your team's to-dos.
- Docker Compose
- Node
- Create your environment variables file:
cp env.example .env.local
- Start the PostgreSQL database using Docker:
npm run docker:up
- Push the database schema:
npm run db:push
First, run the development server:
npm run dev
Visit http://localhost:3000 in your browser to access the application.
npm run docker:up
- Start PostgreSQL databasenpm run docker:down
- Stop PostgreSQL databasenpm run db:generate
- Generate Prisma clientnpm run db:push
- Push schema changes to databasenpm run db:migrate
- Run database migrationsnpm run db:studio
- Open Prisma Studio (database GUI)npm run db:reset
- Reset database and run migrations