default config should be for local dev environment.

This commit is contained in:
Jason Kulatunga 2022-10-28 20:39:21 -07:00
parent c5949f88bd
commit f84cf6fd8c
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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',
};