Skip to content

Commit

Permalink
Docs improvements (#282)
Browse files Browse the repository at this point in the history
  • Loading branch information
francav authored May 31, 2024
2 parents 80214eb + a5095b2 commit 0d02dc9
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,21 @@ cd wks-platform-docker
# Now choose one of two options below:

# For camunda 7
docker-compose -f docker-compose.yaml -f docker-compose.camunda7.yaml -f docker-compose.demo-data-loader.camunda7.yaml -f docker-compose.portal.yaml up -d --build "$@"
docker-compose -f docker-compose.yaml -f docker-compose.camunda7.yaml -f docker-compose.demo-data-loader.camunda7.yaml -f docker-compose.portal.yaml up -d --build

# For camunda 8
docker-compose -f docker-compose.yaml -f docker-compose.camunda8.yaml -f docker-compose.demo-data-loader.camunda8.yaml -f docker-compose.portal.yaml up -d --build "$@"
docker-compose -f docker-compose.yaml -f docker-compose.camunda8.yaml -f docker-compose.demo-data-loader.camunda8.yaml -f docker-compose.portal.yaml up -d --build
```

### Add the following lines to your local hosts file

```bash
# Required to correctly route case-portal requests to localhost
127.0.0.1 minio
::1 minio
```


After successfully running `docker-compose up` to start the Docker Compose configuration, it may take a while for all the web applications to finish their startup process. Once the startup is complete, you can access the following web applications:

- **WKS Platform Portal**: You can access the WKS Platform Portal by opening your web browser and navigating to [http://localhost:3001](http://localhost:3001). Use the following credentials to log in:
Expand Down
8 changes: 1 addition & 7 deletions apps/react/docs/docusaurus.config.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,7 @@ const config: Config = {
docs: {
sidebarPath: require.resolve("./sidebars.js"),
breadcrumbs: false,
editUrl: "https://github.com/wkspower/wks-platform-website/tree/main",
},
blog: {
showReadingTime: false,
// Please change this to your repo.
// Remove this to remove the "edit this page" links.
editUrl: "https://github.com/wkspower/wks-platform-website/tree/main",
editUrl: "https://github.com/wkspower/wks-platform/tree/develop/apps/react/docs/",
},
theme: {
customCss: "./src/css/custom.css",
Expand Down

0 comments on commit 0d02dc9

Please sign in to comment.