You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+52Lines changed: 52 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -76,6 +76,32 @@ make test
76
76
77
77
Ensure that all test cases pass and pay attention to any output that is displayed. This step should validate that the application is functioning as expected.
78
78
79
+
Alternatively, you can also check the application by curling the ALB endpoint. You can find the ALB endpoint in the LocalStack console or by running the following command:
To delete the application from LocalStack, run the following command:
100
+
101
+
```bash
102
+
make destroy-local
103
+
```
104
+
79
105
## Deploying the Application on AWS ☁️
80
106
81
107
### Step 1: Deploy the Application 🚢
@@ -96,6 +122,32 @@ Run the application test cases using the following command:
96
122
make test
97
123
```
98
124
125
+
Alternatively, you can also check the application by curling the ALB endpoint. You can find the ALB endpoint in the AWS console or by running the following command:
126
+
127
+
```bash
128
+
aws elbv2 describe-load-balancers --names serviceslb --query 'LoadBalancers[0].DNSName' --output text
129
+
```
130
+
131
+
Now you can curl the endpoint using the following command:
132
+
133
+
```bash
134
+
curl <ALB_ENDPOINT-FROM_ABOVE_COMMAND>
135
+
```
136
+
137
+
The output should be similar to the following:
138
+
139
+
```bash
140
+
{"message":"Hello, Welcome to Localstack!"}
141
+
```
142
+
143
+
## 🧹 Cleaning Up
144
+
145
+
To delete the application from AWS, run the following command:
146
+
147
+
```bash
148
+
make destroy
149
+
```
150
+
99
151
## 🚀 Configuring Visual Studio Code for Efficient Remote Node.js Debugging
100
152
101
153
Setting up Visual Studio Code for remote Node.js debugging enables smoother and more intuitive development workflows. This guide will walk you through the essential steps to configure your VSCode efficiently for remote debugging of your Node.js applications. 🛠️🔍
0 commit comments