57 lines
2.1 KiB
Markdown
57 lines
2.1 KiB
Markdown
# Strata.RxNorm
|
|
|
|
[](https://github.com/stratadecision/rxnorm/actions/workflows/build.yaml)
|
|
|
|
[](https://octopus.sdt.local/app#/Spaces-1/projects/rxnorm)
|
|
|
|
[](https://sonarqube.ops.stratanetwork.net/dashboard?id=Strata.RxNorm)
|
|
|
|
[](https://proget.sdt.local/feeds/nuget/Strata.RxNorm.Client/versions?HidePrerelease=True)
|
|
|
|
[](https://rxnorm-api.dev.stratanetwork.net)
|
|
|
|
[](https://rxnorm.dev.stratanetwork.net)
|
|
|
|
[](https://rxnorm-dashboard.dev.stratanetwork.net)
|
|
|
|
## General Information
|
|
|
|
## Credits
|
|
This microservice is developed and maintained by The-Outliers
|
|
|
|
## Branching and Versioning
|
|
|
|
| branch | version format | example |
|
|
| ---------- | --------------------- | --------------- |
|
|
| main | #.#.# | 1.2.3 |
|
|
| feature/\* | #.#+1.0-featureName.# | 1.3.0-newfeat.1 |
|
|
| fix/\* | #.#.#+1-fixName.# | 1.2.4-bug.1 |
|
|
|
|
See our [confluence page](https://stratadecision.atlassian.net/wiki/spaces/DOP/pages/3119748190/Branching+and+Versioning) for more information
|
|
|
|
## Usage
|
|
|
|
### Build and Run
|
|
|
|
```
|
|
docker-compose up -d --build
|
|
```
|
|
|
|
- https://localhost:8443/index (swagger api)
|
|
- https://localhost:8443/hangfire (hangfire dashboard)
|
|
- http://localhost:8081 (redis commander)
|
|
|
|
### Extracting nuget package
|
|
|
|
```
|
|
docker create --name throwaway stratarxnorm_rxnorm-api
|
|
docker cp throwaway:/pack .
|
|
docker rm throwaway
|
|
```
|
|
|
|
### Cleanup
|
|
|
|
```
|
|
docker-compose down
|
|
```
|