Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/leandroruel/ebanx-api-typescript

Uma simples API que realiza depósito, saque e transferência de saldo.
https://github.com/leandroruel/ebanx-api-typescript

javascript nestjs nodejs typescript

Last synced: about 2 months ago
JSON representation

Uma simples API que realiza depósito, saque e transferência de saldo.

Awesome Lists containing this project

README

        

## MINI API

## Installation

install all dependencies:

```bash
$ npm install
```

then run migrations for sqlite:

```bash
$ npm run prisma generate
```

## Running the app

```bash
# development
$ npm run start

# watch mode
$ npm run start:dev

# production mode
$ npm run start:prod
```

## Test

```bash
# unit tests
$ npm run test

# e2e tests
$ npm run test:e2e

# test coverage
$ npm run test:cov
```