https://github.com/matlock/messages
https://github.com/matlock/messages
Last synced: 9 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/matlock/messages
- Owner: MatLock
- Created: 2019-11-22T22:09:36.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-11-24T14:12:13.000Z (over 6 years ago)
- Last Synced: 2025-05-25T20:45:23.987Z (about 1 year ago)
- Language: Java
- Size: 19.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# ASAPP Chat Backend Challenge v1
### Overview
This is a java based boilerplate which runs an HTTP Server configured to answer the endpoints defined in
[the challenge you received](https://asappinc.github.io/challenge-backend/).
All endpoints are configured in src/main/java/com/asapp/backend/challenge/Application.java and if you go deeper to the
Routes and Filters passed as second parameters, you will find a TODO comment where you are free to implement your solution.
### Build Docker image
```
docker build -t assap/test .
```
### How to run it
```
docker run -d -p 8080:8080 assap/test:latest
```
### Health Check
invoke hppt://localhost:8080/check to check if the docker is ready to accept request