-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -82,8 +82,8 @@ You will need `bash`, `coreutils`, `docker`, `git`, `mkcert`, `openssl`, `sudo` | |
Checkout the dot.base repository and move into it. | ||
```bash | ||
git clone [email protected]:dot-base/authentication-gateway.git | ||
cd authentication-gateway | ||
git clone [email protected]:dot-base/icd-10-api.git | ||
cd icd-10-api | ||
``` | ||
|
||
### Generate a Github personal access token | ||
|
@@ -112,13 +112,13 @@ In order to develop a service in its complete dot.base environment, you need to | |
### Install service dependencies | ||
|
||
```bash | ||
docker exec -it $(docker ps -q -f name=dotbase_authentication-gateway) npm install | ||
docker exec -it $(docker ps -q -f name=dotbase_icd-10-api) npm install | ||
``` | ||
|
||
### Start this service in development mode | ||
|
||
```bash | ||
docker exec -it $(docker ps -q -f name=dotbase_authentication-gateway) npm start | ||
docker exec -it $(docker ps -q -f name=dotbase_icd-10-api) npm start | ||
``` | ||
|
||
### Watch your dot.base stack | ||
|