Skip to content

Commit 2f79232

Browse files
committed
Update files
Signed-off-by: Kunal Verma <vkunal321@gmail.com>
1 parent 216b784 commit 2f79232

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# Stripe-Payment-Integration
2-
Sign-Up form with Stripe payment gateway
1+
# AWS Deployment Automation
2+
Deployment automation on AWS using Jenkins CI/CD

client/app.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ var btnWorshop3 = document.getElementById("work-3");
66

77
// __________________________________________________________________
88

9-
var URL = "https://kube-workshop.herokuapp.com";
9+
var URL = "http://localhost:3000";
1010

1111
btnWorshop1.addEventListener("click", function (e) {
1212
e.preventDefault();

client/cancel.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ <h1>Error ⚠️</h1>
3333
btn.addEventListener("click", function (e) {
3434
e.preventDefault();
3535

36-
location.href = "https://kube-workshop.herokuapp.com";
36+
location.href = "http://localhost:3000";
3737
});
3838
</script>
3939
</body>

client/success.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ <h1>Success 🎉</h1>
5858
btn.addEventListener("click", function (e) {
5959
e.preventDefault();
6060

61-
location.href = "https://kube-workshop.herokuapp.com";
61+
location.href = "http://localhost:3000";
6262
});
6363
</script>
6464
</body>

client/workshops/workshop1.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ <h1>Speaker</h1>
538538
}
539539

540540
// Setting this PriceId here:
541-
var priceId = "price_1Lp5A6SCC8JVWfvgGEkl8dKT";
541+
var priceId = "price_1M0KsTSCC8JVWfvgLwfKxX53";
542542

543543
fetch("/create-checkout-session/" + priceId, {
544544
method: "POST",

client/workshops/workshop2.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ <h1>Speaker</h1>
538538
}
539539

540540
// Setting this PriceId here:
541-
var priceId = "price_1Lp5AaSCC8JVWfvg8pg1OAGn";
541+
var priceId = "price_1M0KtiSCC8JVWfvgcKspC6qQ";
542542

543543
fetch("/create-checkout-session/" + priceId, {
544544
method: "POST",

client/workshops/workshop3.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -538,7 +538,7 @@ <h1>Speaker</h1>
538538
}
539539

540540
// Setting this PriceId here:
541-
var priceId = "price_1Lp5B7SCC8JVWfvgJ8AgwuvV";
541+
var priceId = "price_1M0KudSCC8JVWfvgG9kjipMp";
542542

543543
fetch("/create-checkout-session/" + priceId, {
544544
method: "POST",

server.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,5 +77,5 @@ app.post("/create-checkout-session/:pid", async (req, res) => {
7777

7878
// Server listening:
7979
app.listen(port, () => {
80-
console.log(`Server listening on port: ${port}!`);
80+
console.log(`Server listening on port: ${port}`);
8181
});

0 commit comments

Comments
 (0)