Project to traking a jar of honey, so that a consumer can know the origin of the product
api-project
|
+--src
|
+--database
|
+--store
|
+--client
+--order
+--product
|
+--beekeeping
|
+-- address
+--beekeeper
+--beeyard
+--beehive
+--honey
|
+--honeycrop
+--harvesthoney
pour plus de détail, consulter la documentation du projet
Installer la base de donnée, run script: script.sql
api-project
|
+-- src
|
--+ database
Modifier le fichier .env avec vos configurations :
DATABASE_HOST=localhost
DATABASE_PORT=3306
DATABASE_USER=root
DATABASE_PASSWORD=
DATABASE_NAME=apic-project
Installer les dépendances :
$ npm install# development
$ npm run start
# watch mode
$ npm run dev
# production mode
$ npm run prod# unit tests
$ npm run test
# e2e tests
$ npm run test:e2e
# test coverage
$ npm run test:cov- Author - COLAS Vincent
