]> PHS Git Server - phs-home.git/commitdiff
Fixing env variables.
authorcharleswrayjr <charleswrayjr@gmail.com>
Thu, 4 Sep 2025 09:02:35 +0000 (04:02 -0500)
committercharleswrayjr <charleswrayjr@gmail.com>
Thu, 4 Sep 2025 09:02:35 +0000 (04:02 -0500)
.idea/workspace.xml
pre-build.sh
run-home.sh

index ded5bea56a6ac0345ce5a9e385a088e6e1ae7f2c..94de3844da31478df7167420b83ac3138819fcce 100644 (file)
@@ -5,8 +5,9 @@
   </component>
   <component name="ChangeListManager">
     <list default="true" id="ab92709f-5288-4a55-873b-517f6adb96d1" name="Changes" comment="Fixing missing files.">
+      <change beforePath="$PROJECT_DIR$/.idea/material_theme_project_new.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/material_theme_project_new.xml" afterDir="false" />
       <change beforePath="$PROJECT_DIR$/.idea/workspace.xml" beforeDir="false" afterPath="$PROJECT_DIR$/.idea/workspace.xml" afterDir="false" />
-      <change beforePath="$PROJECT_DIR$/src/app/views/Dashboard/Dashboard.jsx" beforeDir="false" afterPath="$PROJECT_DIR$/src/app/views/Dashboard/Dashboard.jsx" afterDir="false" />
+      <change beforePath="$PROJECT_DIR$/pre-build.sh" beforeDir="false" afterPath="$PROJECT_DIR$/pre-build.sh" afterDir="false" />
     </list>
     <option name="SHOW_DIALOG" value="false" />
     <option name="HIGHLIGHT_CONFLICTS" value="true" />
@@ -72,7 +73,7 @@
       <option name="number" value="Default" />
       <option name="presentableId" value="Default" />
       <updated>1756966236399</updated>
-      <workItem from="1756966239169" duration="3840000" />
+      <workItem from="1756966239169" duration="5425000" />
     </task>
     <task id="LOCAL-00001" summary="Initial commit.">
       <option name="closed" value="true" />
       <option name="project" value="LOCAL" />
       <updated>1756970755370</updated>
     </task>
-    <option name="localTasksCounter" value="5" />
+    <task id="LOCAL-00005" summary="Fixing missing files.">
+      <option name="closed" value="true" />
+      <created>1756971755431</created>
+      <option name="number" value="00005" />
+      <option name="presentableId" value="LOCAL-00005" />
+      <option name="project" value="LOCAL" />
+      <updated>1756971755431</updated>
+    </task>
+    <option name="localTasksCounter" value="6" />
     <servers />
   </component>
   <component name="TypeScriptGeneratedFilesManager">
index ee4f1213edee995203626cba5a4d66bc6b31f522..8ceeff1cb03d66349c80ff0629fafaa99c1ebcd3 100755 (executable)
@@ -20,8 +20,8 @@ if [ $env = "test" ]; then
   new_it_url="https://api-t.phasecustomsoft.com/it/"
 fi
 if [ $env = 'live' ]; then
-    new_api_url="https://phs-api.phasecustomsoft.com/"
-    new_it_url="https://phs-api.phasecustomsoft.com/it/"
+    new_api_url="https://api.phasecustomsoft.com/"
+    new_it_url="https://api.phasecustomsoft.com/it/"
 fi
 
 echo "New API Url: $new_api_url"
index 57dafb1b0be46ece6f5382a6ac38b976f5eaf4f0..4e4e6920db63a11171230ff508b5cc4ad4419393 100755 (executable)
@@ -5,6 +5,8 @@ if [[ ! -z "${PHS_ENV}" ]]; then
    env=${PHS_ENV}
 fi
 
+echo $env
+
 if [ "$env" == "TEST" ]; then
    echo "PHS API Test Stack"
    npm install --force && /usr/src/app/pre-build.sh test && npm run build && serve -s build