Skip to content

Commit

Permalink
Adds tugboat env values
Browse files Browse the repository at this point in the history
  • Loading branch information
ryguyk committed Dec 5, 2023
1 parent 4c393f2 commit 86e9e6c
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions src/lib/constants/environment.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
export const environments = {
LOCAL: 'localhost',
TUGBOAT: 'tugboat',
DEV: 'development',
STAGING: 'staging',
PROD: 'production',
Expand All @@ -10,6 +11,10 @@ export const hosts = {
hostname: 'localhost',
origin: 'http://localhost:3000',
},
[environments.TUGBOAT]: {
hostname: process.env.TUGBOAT_DEFAULT_SERVICE_URL_HOST,
origin: process.env.TUGBOAT_DEFAULT_SERVICE_URL,
},
[environments.DEV]: {
hostname: 'dev.va.gov',
origin: 'https://dev.va.gov',
Expand Down

0 comments on commit 86e9e6c

Please sign in to comment.