- Navigate to the
backend
directory withcd backend
. - Install dependencies with
npm install
. - Navigate to the
backend/app/prisma
directory withcd backend/app/prisma
. - Run the migration command
npx prisma migrate dev --name init
to create the database and apply initial migrations. - Navigate back to the
backend
directory withcd ../..
. - Start the server with
npm start
.
- Navigate to the
frontend
directory withcd frontend
. - Install dependencies with
npm install
. - Start the development server with
npm run dev
.