We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2c051c6 commit 550120dCopy full SHA for 550120d
.github/workflows/deploy.yml
@@ -23,3 +23,7 @@ jobs:
23
bash
24
cd ~/step-up-grow-website
25
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
@@ -101,7 +101,7 @@
101
<a href="/#contact" class="nav-item nav-link text-primary">Contact</a>
102
103
</div>
104
- <a href="https://app.stepupgrow.in/" id="login-btn"
+ <a href="http://localhost:5173" id="login-btn"
105
class="btn btn-light rounded-pill text-primary py-2 px-4 ms-lg-5">Login</a>
106
107
</nav>
0 commit comments