Skip to content

Commit 550120d

Browse files
committedFeb 7, 2025·
feat: apply updates from workflow
1 parent 2c051c6 commit 550120d

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed
 

‎.github/workflows/deploy.yml

+4
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,7 @@ jobs:
2323
bash
2424
cd ~/step-up-grow-website
2525
git pull origin main
26+
# Update API URL to production
27+
sed -i 's|http://localhost:5000/api|https://api.stepupgrow.in/api|g' js/main.js
28+
# Update Login URL to production
29+
sed -i 's|http://localhost:5173|https://app.stepupgrow.in|g' index.html

‎index.html

+1-1
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
<a href="/#contact" class="nav-item nav-link text-primary">Contact</a>
102102

103103
</div>
104-
<a href="https://app.stepupgrow.in/" id="login-btn"
104+
<a href="http://localhost:5173" id="login-btn"
105105
class="btn btn-light rounded-pill text-primary py-2 px-4 ms-lg-5">Login</a>
106106
</div>
107107
</nav>

0 commit comments

Comments
 (0)
Please sign in to comment.