-
Notifications
You must be signed in to change notification settings - Fork 35
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
30 additions
and
21 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
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,22 +1,24 @@ | ||
# Any of these can be overridden locally in ../local.env | ||
|
||
# == TEST SERVICES GLOBALS | ||
WIKIBASE_PUBLIC_HOST=wikibase.example | ||
WDQS_FRONTEND_PUBLIC_HOST=wdqs-frontend.example | ||
QUICKSTATEMENTS_PUBLIC_HOST=quickstatements.example | ||
|
||
# URLS | ||
WIKIBASE_URL=http://wikibase | ||
WIKIBASE_CONCEPT_URI=http://wikibase | ||
MW_ADMIN_NAME=admin | ||
MW_ADMIN_EMAIL=admin@wikibase.example | ||
MW_ADMIN_PASS=change-this-password | ||
|
||
# URLs used by tests to access services from within the | ||
# docker network through traefik proxy | ||
WIKIBASE_URL=http://wikibase.example | ||
WDQS_FRONTEND_URL=http://wdqs-frontend.example | ||
QUICKSTATEMENTS_URL=http://quickstatements.example | ||
|
||
# URLs used by tests to access services from within the docker network directly | ||
WIKIBASE_CLIENT_URL=http://wikibase-client | ||
WDQS_URL=http://wdqs:9999 | ||
WDQS_FRONTEND_URL=http://wdqs-frontend | ||
WDQS_PROXY_URL=http://wdqs-proxy | ||
QUICKSTATEMENTS_URL=http://quickstatements | ||
|
||
# For Reverse Proxy (traefik) service routing | ||
WIKIBASE_PUBLIC_HOST=wikibase | ||
WDQS_FRONTEND_PUBLIC_HOST=wdqs-frontend | ||
QUICKSTATEMENTS_PUBLIC_HOST=quickstatements | ||
|
||
# CONFIG | ||
|
||
# wikibase / wikibase-client / wikibase-jobrunner | ||
MW_SCRIPT_PATH=/w |