Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update pass-core user env var names #25

Merged
merged 1 commit into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions developer-documentation/data-loaders/grant-loader.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,8 @@ Once pass-docker is up and the loader container is done running, open a browser
APP_HOME_ENV=/data/grantloader
POLICY_PROP_PATH=file:/data/grantloader/policy.properties
PASS_CLIENT_URL=http://localhost:8080
PASS_CLIENT_USER=<value from .eclipse-pass.local_env in pass-docker PASS_CORE_BACKEND_USER>
PASS_CLIENT_PASSWORD=<value from .eclipse-pass.local_env in pass-docker PASS_CORE_BACKEND_PASSWORD>
PASS_CLIENT_USER=<value from .eclipse-pass.local_env in pass-docker PASS_CORE_USER>
PASS_CLIENT_PASSWORD=<value from .eclipse-pass.local_env in pass-docker PASS_CORE_PASSWORD>
```
4. Copy your grant CSV file to the `grantloadertest` directory.
5. Open a new terminal and cd to the pass-docker directory.
Expand Down
8 changes: 4 additions & 4 deletions developer-documentation/pass-core/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,8 +98,8 @@ Otherwise, a connection to an ActiveMQ broker can be configured by setting `SPRI
* PASS_CORE_DATABASE_PASSWORD=moo
* PASS_CORE_PORT=8080
* PASS_CORE_LOG_DIR=${java.io.tmpdir}/pass-core
* PASS_CORE_BACKEND_USER=backend
* PASS_CORE_BACKEND_PASSWORD=moo
* PASS_CORE_USER=backend
* PASS_CORE_PASSWORD=moo
* PASS_CORE_USE_SQS=false
* PASS_CORE_EMBED_JMS_BROKER=true
* PASS_CORE_SUBMISSION_QUEUE=pass-submission
Expand Down Expand Up @@ -297,8 +297,8 @@ Key variables to consider include:

```text
PASS_CORE_BASE_URL=[your-base-url]
PASS_CORE_BACKEND_USER=[your-username]
PASS_CORE_BACKEND_PASSWORD=[your-password]
PASS_CORE_USER=[your-username]
PASS_CORE_PASSWORD=[your-password]
PASS_CORE_APP_LOCATION=[url-of-front-end]
```

Expand Down