Updated readme

This commit is contained in:
Sambo Chea 2021-09-13 20:25:18 +07:00
parent 350afad500
commit ce813262c3
2 changed files with 18 additions and 1 deletions

View File

@ -8,5 +8,22 @@
- DroneCI
- Lerna Support
# Quick Start
- Start
```shell
yarn start
```
- Navigate
```shell
curl http://localhost:3000
```
- Response
```json
{
"startedAt": "2021-09-13T13:21:04.184Z",
"message": "Instance id: presenter#143470",
"status": "OK"
}
```
### Contributors
- Sambo Chea <sombochea@cubetiqs.com>

View File

@ -11,7 +11,7 @@ const app = Express()
const httpServer = createServer(app)
info(
`Application server running on: ${hostId} at port: ${SERVER_PORT} and started at: ${startedAt}`
`Application server running on: ${hostId} at: http://0.0.0.0:${SERVER_PORT} and started at: ${startedAt}`
)
httpServer.listen(SERVER_PORT)