... | ... | @@ -30,6 +30,20 @@ To be able to take advantage of the fully functional SDK4ED Dashboard, the user |
|
|
- **Step 8**: Add a user in the Keycloak Administration Console (this user will be used to login to the dashboard).
|
|
|
- **Step 9**: Add the SDK4ED Dashboard URI to valid redirect uri's list in `KeyCloak Admin Console > Clients > Settings > Valid Redirect URIs` to allow redirect to the dashboard. (prevents `invalid redirect_uri` error after keycloak login).
|
|
|
|
|
|
## Installation of Project Management service
|
|
|
- **Step 1**: Download and install [Docker](https://www.docker.com/).
|
|
|
- **Step 2**: Clone the latest Project Management service version that can be found in the present Gitlab repository and navigate to the root directory.
|
|
|
- **Step 3**: Open `docker-compose.yml` and change projectapi port mapping from 80 to 3001:
|
|
|
```
|
|
|
projectapi:
|
|
|
ports:
|
|
|
- "3001:80"
|
|
|
```
|
|
|
- **Step 4**: Open cmd and run the following command:
|
|
|
```bash
|
|
|
`docker-compose up`
|
|
|
```
|
|
|
|
|
|
## Installation of SDK4ED Dashboard
|
|
|
- **Step 1**: Clone the latest SDK4ED Dashboard version that can be found in the present Gitlab repository and navigate to the root directory.
|
|
|
- **Step 2**: To deploy the application you have to first install all the dependencies used. Open cmd and run the following command:
|
... | ... | |