Skip to content

Latest commit

 

History

History
25 lines (22 loc) · 1.72 KB

README.md

File metadata and controls

25 lines (22 loc) · 1.72 KB

NestJS Prisma GraphQL URQL React TypeScript Chakra Formik Stack Overflow

This is a full-stack application with limited functionality - a copy of the teameas.org application. It provides an opportunity to collect donations to clean up the ocean environment from trash.

To start the client part, you need to perform the following steps:

  • go to client folder
  • run the npm install or yarn install command
  • run the command to start the client: npm start or yarn start

To start the server part, you need to perform the following steps:

  • go to server folder
  • run the npm install or yarn install command
  • rename .env.dist file to .env
  • create prisma migration npx prisma migrate dev --name init
  • fill in prisma db npx prisma db seed
  • run the command to start the server: npm run dev or yarn run dev