BookDo7starsTS / bookdo7stars_be

0 stars 0 forks source link

🌌 BookDo7Stars-TS Backend

Table of Contents

Introduction

This project is an extension of the existing Book Store Backend Project using different technologies to enhance security and other aspects.

Git Flow

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.

Features

Technologies

Installation

  1. Clone the repository:
    
    git clone https://github.com/yourusername/nodejs-backend-project.git
  2. Navigate to the project directory: cd bookdo7star_be
  3. Install the dependencies: npm install
  4. Set up environment variables: copy .env.default file in the root of the project and fill the informations

Usage

  1. Start the development server: npm run dev
  2. The API will be available at http://localhost:4000.

API Documentation

API documentation can be found at API Documentation.

Testing

For testing the testing library jest will be used. Tests can be run via: npm test