https://github.com/rogervila/http-catcher
Catch any HTTP request and see its details
https://github.com/rogervila/http-catcher
docker flask
Last synced: 3 months ago
JSON representation
Catch any HTTP request and see its details
- Host: GitHub
- URL: https://github.com/rogervila/http-catcher
- Owner: rogervila
- License: mit
- Created: 2021-06-29T09:41:04.000Z (about 5 years ago)
- Default Branch: main
- Last Pushed: 2022-04-04T12:43:55.000Z (about 4 years ago)
- Last Synced: 2024-04-15T20:51:13.212Z (about 2 years ago)
- Topics: docker, flask
- Language: Python
- Homepage: https://rogervila.es
- Size: 14.6 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# HTTPCatcher

## Setup
Running HTTPCatcher with docker is easy, but you can also run it locally.
### Docker setup
The image is available on [ghcr.io](https://ghcr.io).
```sh
docker run -p 5000:5000 ghcr.io/rogervila/http-catcher
```
### Local setup
Clone the repository and run the following commands:
```sh
pip install --user -r requirements.txt
FLASK_APP=web.py flask run -h 0.0.0.0 -p 5000
```
## License
HTTPCatcher is open-sourced software licensed under the [MIT license](https://opensource.org/licenses/MIT).