You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -157,8 +157,8 @@ DSPACE_UI_SSL => DSPACE_SSL
157
157
158
158
The same settings can also be overwritten by setting system environment variables instead, E.g.:
159
159
```bash
160
-
export DSPACE_HOST=api7.dspace.org
161
-
export DSPACE_UI_PORT=4200
160
+
export DSPACE_HOST=demo.dspace.org
161
+
export DSPACE_UI_PORT=4000
162
162
```
163
163
164
164
The priority works as follows: **environment variable** overrides **variable in `.env` file** overrides external config set by `DSPACE_APP_CONFIG_PATH` overrides **`config.(prod or dev).yml`**
@@ -288,7 +288,7 @@ E2E tests (aka integration tests) use [Cypress.io](https://www.cypress.io/). Con
288
288
The test files can be found in the `./cypress/integration/` folder.
289
289
290
290
Before you can run e2e tests, two things are REQUIRED:
291
-
1. You MUST be running the DSpace backend (i.e. REST API) locally. The e2e tests will *NOT* succeed if run against our demo REST API (https://api7.dspace.org/server/), as that server is uncontrolled and may have content added/removed at any time.
291
+
1. You MUST be running the DSpace backend (i.e. REST API) locally. The e2e tests will *NOT* succeed if run against our demo/sandbox REST API (https://demo.dspace.org/server/ or https://sandbox.dspace.org/server/), as those sites may have content added/removed at any time.
292
292
* After starting up your backend on localhost, make sure either your `config.prod.yml` or `config.dev.yml` has its `rest` settings defined to use that localhost backend.
293
293
* If you'd prefer, you may instead use environment variables as described at [Configuring](#configuring). For example:
0 commit comments