[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

carbonfact/carbonfact-bootstrap

Repository files navigation

Carbonfact

Stack used:

  • NextJS
  • NestJS
  • Prisma
  • sqlite

Quick start

Frontend

# install frontend dependencies
cd apps/front
npm install

Backend

# install backend dependencies
cd apps/back
npm install
# Install & seed DB
npx prisma db push && npx prisma db seed

Frontend Execution

cd apps/front && npm run dev

Backend Execution

cd apps/back && npm run start:dev

Open localhost:3000

testImage

Testing

Back Unit testing

npm run test

Backend integration testing

npm run test:e2e