diff --git a/.env.prod b/.env.prod new file mode 100644 index 0000000..3ffe1e7 --- /dev/null +++ b/.env.prod @@ -0,0 +1,17 @@ +# Show Login Option ('yes' or 'no') +VITE_SHOW_LOGIN=yes +VITE_IS_DEVELOPMENT= + +VITE_BASE_URL=/workforce + +# VITE_AUTH_MOCK_USER can be set to ADMIN, USER, or left blank +# Leaving VITE_AUTH_MOCK_USER blank will cause the app not to run in "Auth Mocked Mode" +# and to instead send authentication requests to VITE_AUTH_HOST +VITE_AUTH_MOCK_USER= + +VITE_AUTH_HOST=https://identityc.sec.usace.army.mil/auth + +VITE_AUTH_REDIRECT_URL=https://hhc-apps.cwbi.mil/workforce + +# APIs Used By Application +VITE_WORKFORCE_API_URL=https://hhc-apps.cwbi.mil/workforce/api diff --git a/.env.test b/.env.test new file mode 100644 index 0000000..f370e48 --- /dev/null +++ b/.env.test @@ -0,0 +1,17 @@ +# Show Login Option ('yes' or 'no') +VITE_SHOW_LOGIN=yes +VITE_IS_DEVELOPMENT= + +VITE_BASE_URL=/workforce + +# VITE_AUTH_MOCK_USER can be set to ADMIN, USER, or left blank +# Leaving VITE_AUTH_MOCK_USER blank will cause the app not to run in "Auth Mocked Mode" +# and to instead send authentication requests to VITE_AUTH_HOST +VITE_AUTH_MOCK_USER= + +VITE_AUTH_HOST=https://identityc-test.cwbi.us/auth + +VITE_AUTH_REDIRECT_URL=https://hhc-apps-test.cwbi.us/workforce + +# APIs Used By Application +VITE_WORKFORCE_API_URL=https://hhc-apps-test.cwbi.us/workforce/api