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
- Host: GitHub
- URL: https://github.com/ignavan39/screens-sales
- Owner: ignavan39
- Created: 2021-04-09T08:15:29.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2021-05-14T14:22:13.000Z (about 5 years ago)
- Last Synced: 2025-10-09T01:52:56.542Z (8 months ago)
- Topics: 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
- Language: TypeScript
- Homepage:
- Size: 1.28 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
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/
```

Nest is [MIT licensed](LICENSE).