forked from OwnZones/orchestration-gui
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* fix: add --always to update_gui_version.sh To get results even if there are no tags yet in the repository. * fix: update code to rename from agile to ateliere or simply live * fixup! Merge remote-tracking branch 'upstream/main' into chore-sync-with-upstream * chore: fix variable name --------- Co-authored-by: Per Moberg <[email protected]>
- Loading branch information
Showing
44 changed files
with
191 additions
and
174 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
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 |
---|---|---|
|
@@ -15,12 +15,12 @@ Start mongodb docker container using `docker-compose up`. It will initialize the | |
If you want to run the GUI and mongodb docker containers add this to the `docker-compose.yml` file: | ||
|
||
``` | ||
agileui: | ||
liveui: | ||
build: . | ||
environment: | ||
MONGODB_URI: mongodb://api:<API_PASSWORD>@host.docker.internal:27017/agile-live-gui | ||
AGILE_URL: https://<SYSTEM_CONTROLLER_IP>:8080 | ||
AGILE_CREDENTIALS: <USERNAME>:<PASSWORD> | ||
MONGODB_URI: mongodb://api:<API_PASSWORD>@host.docker.internal:27017/live-gui | ||
LIVE_URL: https://<SYSTEM_CONTROLLER_IP>:8080 | ||
LIVE_CREDENTIALS: <USERNAME>:<PASSWORD> | ||
NODE_TLS_REJECT_UNAUTHORIZED: 0 | ||
NEXTAUTH_SECRET: <NEXT_AUTH_SECRET> | ||
NEXTAUTH_URL: http://localhost:3000 | ||
|
@@ -34,10 +34,10 @@ If you want to run the GUI and mongodb docker containers add this to the `docker | |
|
||
Then copy the `.env.sample` file and name it `.env`, it will contain env variables: | ||
|
||
- `MONGODB_URI` - The mongodb connection string including credentials eg. `mongodb://user123:[email protected]:27017/agile-live-gui` | ||
- `MONGODB_URI` - The mongodb connection string including credentials eg. `mongodb://user123:[email protected]:27017/live-gui` | ||
|
||
- `AGILE_URL` - The URL to the Agile-live system controller REST API | ||
- `AGILE_CREDENTIALS` - Credentials for the Agile-live system controller REST API | ||
- `LIVE_URL` - The URL to the Ateliere Live system controller REST API | ||
- `LIVE_CREDENTIALS` - Credentials for the Ateliere Live system controller REST API | ||
|
||
- `NEXTAUTH_SECRET` - The secret used to encrypt the JWT Token | ||
- `NEXTAUTH_URL` - The base url for the service, eg. `http://localhost:3000`, used internally by NextAuth. | ||
|
@@ -64,7 +64,7 @@ Run following to run application in development environment: | |
|
||
### External Documentation | ||
|
||
https://docs.agilecontent.com/docs/acl/reference/3-0-0/rest_api/ | ||
https://help.ateliere.com/live/docs/reference/7-0-0/rest_api/ | ||
|
||
### Contributing | ||
|
||
|
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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
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 |
---|---|---|
@@ -1,8 +1,8 @@ | ||
/* eslint-disable no-undef */ | ||
productionsDb = db.getSiblingDB('agile-live-gui'); | ||
productionsDb = db.getSiblingDB('live-gui'); | ||
|
||
productionsDb.createUser({ | ||
user: 'api', | ||
pwd: 'password', | ||
roles: [{ role: 'readWrite', db: 'agile-live-gui' }] | ||
roles: [{ role: 'readWrite', db: 'live-gui' }] | ||
}); |
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
This file was deleted.
Oops, something went wrong.
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
8 changes: 4 additions & 4 deletions
8
src/api/agileLive/controlpanels.ts → src/api/ateliereLive/controlpanels.ts
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
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
Oops, something went wrong.