Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mightyhorst/sca-dev-test-bff-microservice
Backend for Frontend Microservice for SCA Dev Test React App Written to NestJs and TypeScript
https://github.com/mightyhorst/sca-dev-test-bff-microservice
microservice nestjs typescript
Last synced: about 3 hours ago
JSON representation
Backend for Frontend Microservice for SCA Dev Test React App Written to NestJs and TypeScript
- Host: GitHub
- URL: https://github.com/mightyhorst/sca-dev-test-bff-microservice
- Owner: mightyhorst
- Created: 2019-10-23T22:09:38.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2023-01-24T00:43:14.000Z (about 2 years ago)
- Last Synced: 2024-11-26T02:14:40.133Z (2 months ago)
- Topics: microservice, nestjs, typescript
- Language: TypeScript
- Size: 582 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 20
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# SCA Dev Test - API MicroService
[![CircleCI](https://circleci.com/gh/cypress-io/cypress-and-jest-typescript-example.svg?style=svg)](https://circleci.com/gh/cypress-io/cypress-and-jest-typescript-example)Backend for Frontend Microservice for SCA Dev Test React App Written to NestJs and TypeScript
# Quick Start
### Quick Links
| Linkπ¦ | URL |
| --- | --- |
| `Frontend repo` | https://github.com/mitni455/sca-dev-test |##### Folder Structure
```
docker-compose.yml --> docker compose
/microservice-spa --> shared repo
Dockerfile.dev
/server --> NestJs server
```### Running locally
* Run with Docker
```bash
docker-compose up
```* Run without Docker
## Installation
```bash
yarn
```## Running the app
```bash
# development
yarn run start# watch mode
yarn run start:dev# production mode
yarn run start:prod
```## Test
```bash
# unit tests
yarn run test# e2e tests
yarn run test:e2e# test coverage
yarn run test:cov
```