Skip to content

Microservice to Create, Read, Update and Delete Rural Producers.

Notifications You must be signed in to change notification settings

DenisSlapelis/rural-producer-service

Repository files navigation

[rural-producer-service]

Microservice to Create, Read, Update and Delete Rural Producers using Clean Architecture, TDD and DDD concepts.


Static Badge

Static Badge Static Badge Static Badge


Static Badge

Static Badge Static Badge


Static Badge

Static Badge


Static Badge

Static Badge Static Badge


Table of contents


Envs

You must configure .env file following the .env.example template. Some envs come directly from the AWS Parameter Store, so it is very important to have configured the AWS_ACCESS_KEY_ID and AWS_SECRET_ACCESS_KEY values ​​so that all application envs are loaded correctly.

(Back to Table of contents ⬆️)


Docker Prerequisites

To run this project with docker, ensure that you have the following items:

(Back to Table of contents ⬆️)


Docker Usage

Start the node server with the following commands:

docker compose build
docker compose up -d

(Back to Table of contents ⬆️)


Node Prerequisites

To run this project, ensure that you have the following items:

(Back to Table of contents ⬆️)


Node Installation

  1. Clone this repository to your local machine or download the source code.

  2. Open a terminal and navigate to the project's root directory.

  3. Run the following command to install the project dependencies:

    npm install

(Back to Table of contents ⬆️)


Node Usage

Start the node server in developer mode with the following command:

npm run start:dev

This will start the server and watch for any file changes, automatically restarting the server when necessary.

Or start in production mode with the following command:

npm run start

(Back to Table of contents ⬆️)


Tests

  • Run the following command to execute the project tests:

    npm run test

(Back to Table of contents ⬆️)


Endpoints rules

  • All endpoints can be found here.
  • Except healthcheck, all endpoints have the prefix /api followed by the route version, for example /api/v1/.
  • All endpoints require authorization, which can be passed through the Authorization header with a valid JWT token (this can be obtained by making a POST request on the login route with username and password).
  • The Authorization header is an Bearer Token.

(Back to Table of contents ⬆️)


Postman

(Back to Table of contents ⬆️)


Database

database

(Back to Table of contents ⬆️)


Integrations

integrations

(Back to Table of contents ⬆️)


Folder Structure

  • .vscode: vscode configs.
  • docs: all project documentations, like scripts, diagrams, texts.
  • src
    • config: generic project configurations, like database configs, commit configs.
      • database: database configs.
        • models: database models.
        • migrations: database migrations.
      • envs: local and async envs configs.
    • controllers: application controllers.
    • dtos: application dtos.
    • entities: application domain entities.
    • factories: application factories to be used on routes.
    • interfaces: application interfaces.
    • middlewares: application middlewares.
    • repositories: application repositories.
    • routes: application routes.
      • v1: v1 endpoints.
    • use-cases: application use cases that contain the entire business rule.
    • services: application services.
    • utils: common utils functions, constants, and application dependencies.
      • logger: logger module.
  • tests: project tests

(Back to Table of contents ⬆️)

About

Microservice to Create, Read, Update and Delete Rural Producers.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published