/Project-C

Primary LanguageJavaScriptMozilla Public License 2.0MPL-2.0

Project-C

Usage:

Development

To start the development environment, run:

npm run dev

This command will bring up necessary services using Docker Compose and start the Next.js development server.

Services Management

  • Start services:
npm run services:up
  • Stop services:
npm run services:stop
  • Remove services:
npm run services:down

Linting

To check and fix linting issues, you can use the following commands:

  • Check linting:
npm run lint:check
  • Fix linting issues:
npm run lint:fix

Testing

To run tests, execute:

npm test

For watching mode during development, you can use:

npm run test:watch