Skip to content
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 .devcontainer/.env.development
Original file line number Diff line number Diff line change
Expand Up @@ -294,11 +294,11 @@ DEFAULT_SQL_BATCH_SIZE="100000"
################################################################################
# Base URL of the voting portal, used by keycloak-nginx for redirect targets.
# Must be an absolute URL in order for nginx error_page redirects to be valid.
VOTING_PORTAL_URL=http://127.0.0.1:3000
VOTING_PORTAL_URL=http://localhost:3000

################################################################################
# This is the base url of the ballot verifier. This is used by windmill.
BALLOT_VERIFIER_URL=http://127.0.0.1:3001
BALLOT_VERIFIER_URL=http://localhost:3001

################################################################################
# Configuration related to communications sent to voters, used by windmill.
Expand Down
2 changes: 1 addition & 1 deletion packages/admin-portal/public/global-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@
"en": "Enter in {{vote_url}} to vote"
},
"PUBLIC_BUCKET_URL": "http://127.0.0.1:9002/public/",
"VOTING_PORTAL_URL": "http://127.0.0.1:3000",
"VOTING_PORTAL_URL": "http://localhost:3000",
"ACTIVATE_MIRU_EXPORT": true,
"CUSTOM_URLS_DOMAIN_NAME": "google.com"
}
2 changes: 1 addition & 1 deletion packages/voting-portal/public/global-settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
"HASURA_URL": "http://localhost:8080/v1/graphql",
"APP_VERSION": "dev",
"APP_HASH": "dev",
"BALLOT_VERIFIER_URL": "http://127.0.0.1:3001/",
"BALLOT_VERIFIER_URL": "http://localhost:3001/",
"PUBLIC_BUCKET_URL": "http://127.0.0.1:9002/public/",
"KEYCLOAK_ACCESS_TOKEN_LIFESPAN_SECS": 900,
"POLLING_DURATION_TIMEOUT": 12000
Expand Down
Loading