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
@@ -135,8 +135,8 @@ DSPACE_UI_SSL => DSPACE_SSL
135
135
136
136
The same settings can also be overwritten by setting system environment variables instead, E.g.:
137
137
```bash
138
-
export DSPACE_HOST=api7.dspace.org
139
-
export DSPACE_UI_PORT=4200
138
+
export DSPACE_HOST=demo.dspace.org
139
+
export DSPACE_UI_PORT=4000
140
140
```
141
141
142
142
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`**
@@ -266,7 +266,7 @@ E2E tests (aka integration tests) use [Cypress.io](https://www.cypress.io/). Con
266
266
The test files can be found in the `./cypress/integration/` folder.
267
267
268
268
Before you can run e2e tests, two things are REQUIRED:
269
-
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.
269
+
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.
270
270
* 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.
271
271
* If you'd prefer, you may instead use environment variables as described at [Configuring](#configuring). For example:
0 commit comments