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

https://github.com/ignavan39/screens-sales

cms for selling screens
https://github.com/ignavan39/screens-sales

aws aws-lambda aws-s3 aws-sdk cms cms-backend docker docker-compose nest nestjs nestjs-backend nestjs-boilerplate nestjs-postgres pg postgresql relational-databases typeorm

Last synced: 2 months ago
JSON representation

cms for selling screens

Awesome Lists containing this project

README

          

# Screens Sales 📱

## Description

CMS for selling screens

### Database diagram

## Installation

```bash
$ yarn
```

## Running the app

```bash
#running database
$ docker-compose up -d
```

```bash
# development
$ yarn start

# watch mode
$ yarn start:dev

# production mode
$ yarn start:prod
```

## Local Tunnel :
```bash
$ lt --subdomain big-swan-85 --port 3000
```

## Test

```bash
# unit tests
$ yarn test

# e2e tests
$ yarn test:e2e

# test coverage
$ yarn test:cov
```

## Migrations :

### For start database migration :
```bash
$ typeorm migration:run
```

### For revert migration :
```bash
$ typeorm migration:revert
```

### For generate migration file :
```bash
$ npx typeorm migration:create -n ${nameMigration} -d src/migrations
```

## Swagger Api

```
http://localhost:3000/api/
```
![link](http://localhost:3000/api/)

Nest is [MIT licensed](LICENSE).