This is the project template for Hack The Tunnels.
The project template utilizes React, TypeScript, Express, and Prisma.
Before you can set up the project, you will need to install Node.js.
To get the project working, you will need to have both the client and server running.
- Move into the client directory
cd client
- Install client dependencies
npm install
- Copy
.env.sample
Create a copy of the .env.sample
file and rename the file's name to .env
.
- Run the client
npm run dev
- Move into the service directory
cd service
- Install service dependencies
npm install
- Copy
.env.sample
Create a copy of the .env.sample
file and rename the file's name to .env
.
- Run Migrations
npx prisma migrate dev
- Add the Seed Data
npx prisma db seed
- Run the service
npm run dev