This project is an extension of the existing Book Store Backend Project using different technologies to enhance security and other aspects.
Refer to this document for the basic Git Flow: Git Flow Workflow.
The develop
branch is the default branch. Each feature branch is always created from the develop branch. Feature branches are created per task and follow the naming convention feature/<<team-member-name>>-<<task-keyword>>
. For example, if Joon is working on the login feature, the branch would be named feature/joon-login
.
git clone https://github.com/yourusername/nodejs-backend-project.git
cd bookdo7star_be
npm install
.env.default
file in the root of the project and fill the informationsnpm run dev
http://localhost:4000
.API documentation can be found at API Documentation.
For testing the testing library jest
will be used.
Tests can be run via:
npm test