From 949126bf7e3b312f172164c40de9873610ecd5fe Mon Sep 17 00:00:00 2001 From: Adam Scarberry <46494851+adamscarberry@users.noreply.github.com> Date: Thu, 6 Nov 2025 15:41:52 -0500 Subject: [PATCH] add test and prod env files --- .env.prod | 17 +++++++++++++++++ .env.test | 17 +++++++++++++++++ 2 files changed, 34 insertions(+) create mode 100644 .env.prod create mode 100644 .env.test 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