Skip to content

Latest commit

 

History

History
38 lines (29 loc) · 718 Bytes

README.MD

File metadata and controls

38 lines (29 loc) · 718 Bytes

Brain-g project

API for manage farm dataset using node, express, typescript, and solid principles.

Run Application using Docker

You need to have installed Docker before it. You will find instructions here.

docker compose up

API Docs

For api documentation you can access the following endpoint: http://localhost:3000/api-docs/ after when the server is running.

Manual Installation

# Expose a postgres using docker 
docker compose up postgres

# Install project dependencies
yarn install

Create database

yarn db:start

Development mode

yarn start:dev

Production mode

yarn build
yarn start