File tree Expand file tree Collapse file tree 1 file changed +32
-0
lines changed
Expand file tree Collapse file tree 1 file changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -88,6 +88,28 @@ yarn dev
8888
8989> Sequelize will automatically sync the database on startup.
9090
91+ ### Deployment
92+
93+ This project has been deployed and is publicly accessible via:
94+
95+ ```
96+ http://203.194.113.104:3000
97+ ```
98+
99+ You can test if the service is running using:
100+
101+ ```
102+ http://203.194.113.104:3000/health
103+ ```
104+
105+ And explore the API documentation at:
106+
107+ ```
108+ http://203.194.113.104:3000/api-docs
109+ ```
110+
111+ > Note: Domain configuration and HTTPS setup are in progress.
112+
91113## Main API Endpoints
92114
93115All endpoints are prefixed with ` /api ` .
@@ -107,6 +129,11 @@ Swagger UI is available at:
107129```
108130http://localhost:3000/api-docs
109131```
132+ Or in production:
133+
134+ ```
135+ http://203.194.113.104:3000/api-docs
136+ ```
110137
111138## Health Check
112139
@@ -115,6 +142,11 @@ To verify the server is running:
115142``` bash
116143curl http://localhost:3000/health
117144```
145+ Or in production:
146+
147+ ``` bash
148+ curl http://203.194.113.104:3000/health
149+ ```
118150
119151## Running Tests (Optional)
120152
You can’t perform that action at this time.
0 commit comments