/carallel-backend

Carallel backend app

Primary LanguageTypeScript

Carallel Backend

Welcome to my Carallel Backend app. This project is a web application built using Nest.js, and it provides various features for users. You can find information about how to set up and use the app below.

Description

Carallel Backend App is a NestJS application that consists of three main modules:

  • Authentication: Provides user authentication and authorization.
  • Article: Fetch articles from mock database.
  • History: Tracks user link history within the application.

Getting Started

To get started with this project, follow these steps:

  1. Clone the repository to your local machine:

    git clone https://github.com/danielkocurek/carallel-backend.git
    cd carallel-backend
    npm install
    
  2. First, run the development server:

    development

    npm run start

    watch mode

    npm run start:dev

    production mode

    npm run start:prod
  3. Finally, run the test:

    unit tests

    npm run test

    e2e tests

    npm run test:e2e

    test coverage

    npm run test:cov