From f84cf6fd8c5481d3ddbcc265c950b9587cf466cd Mon Sep 17 00:00:00 2001 From: Jason Kulatunga Date: Fri, 28 Oct 2022 20:39:21 -0700 Subject: [PATCH] default config should be for local dev environment. --- CONTRIBUTING.md | 2 +- frontend/src/environments/environment.ts | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index fcbeeae2..4d0d043a 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -76,7 +76,7 @@ Next we'll start the processes described above: # In terminal #1, run the following cd frontend -npm run dist +npm run dist -- -c sandbox # In terminal #2, run the following go mod vendor diff --git a/frontend/src/environments/environment.ts b/frontend/src/environments/environment.ts index 80f80b33..6dfba5ce 100644 --- a/frontend/src/environments/environment.ts +++ b/frontend/src/environments/environment.ts @@ -9,12 +9,12 @@ export const environment = { lighthouse_api_endpoint_base: 'https://lighthouse.fastenhealth.com/sandbox', //used to specify the couchdb server that we're going to use (can be relative or absolute). Must not have trailing slash - couchdb_endpoint_base: 'https://couchdb.sandbox.fastenhealth.com', + // couchdb_endpoint_base: 'https://couchdb.sandbox.fastenhealth.com', // if relative, must start with / - // couchdb_endpoint_base: '/database' + couchdb_endpoint_base: '/database', //used to specify the api server that we're going to use (can be relative or absolute). Must not have trailing slash - fasten_api_endpoint_base: 'https://api.sandbox.fastenhealth.com/v1', + // fasten_api_endpoint_base: 'https://api.sandbox.fastenhealth.com/v1', // if relative, must start with / - // fasten_api_endpoint_base: '/api' + fasten_api_endpoint_base: '/api', };