Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/marcosoliveira91/case-labeling
Simple doctor case labeling app
https://github.com/marcosoliveira91/case-labeling
backend controller-service-repository-pattern crud docker-compose fastify ioc-container nodejs rest-api
Last synced: 23 days ago
JSON representation
Simple doctor case labeling app
- Host: GitHub
- URL: https://github.com/marcosoliveira91/case-labeling
- Owner: marcosoliveira91
- Created: 2024-06-02T15:33:25.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-06-02T15:35:48.000Z (8 months ago)
- Last Synced: 2024-11-08T14:48:37.549Z (3 months ago)
- Topics: backend, controller-service-repository-pattern, crud, docker-compose, fastify, ioc-container, nodejs, rest-api
- Language: TypeScript
- Homepage:
- Size: 509 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Case Labeling App
This monorepo project contains two packages:
1. [web-app]:case-labeling-app
2. [server]:case-labeling-service
- API documentation available at `GET /docs`
- Health endpoint available at `GET /health`
- Postman example collection available [here](https://gitlab.com/marcosoliveira91/case-labeling/-/wikis/Postman-Collection)
The filesdeployments/local/environment
andpackages/case-labeling-app/.env.local
are already set with local environment variables needed.There's also a mock user already created. Credentials will be needed for authenticated routes.
```
name: Dr.Strangelove
email: [email protected]
password: Dummy123
```
You'll just need to follow this instructions to run it locally.```
npm ci
npm run build
```and then to run each app:
```
npm run start:server
```
```
npm run start:webapp
```