A rocket.rs webserver designed to mirror a request back to a client that made it. This was originally designed to test requests from the browser or http clients. The backend keeps track of requests made by users.
Go to file
Camerin Figueroa 91e92c112f
Update rust.yml
2024-03-19 10:41:44 -04:00
.github/workflows Update rust.yml 2024-03-19 10:41:44 -04:00
.vscode Added Additional features 2024-03-04 22:19:39 +00:00
migrations Commented and Refactored codeMade ids in the database i64 values to increase available id spaceMoved some structs and enums from main.rs to models.rsCommented structs and functions 2024-03-06 22:43:16 +00:00
src Commented and Refactored codeMade ids in the database i64 values to increase available id spaceMoved some structs and enums from main.rs to models.rsCommented structs and functions 2024-03-06 22:43:16 +00:00
templates Fixed saving and restoring fields in index.hbs 2024-03-05 22:34:33 +00:00
.env Added Docker and short instructions 2024-03-07 21:57:25 +00:00
.env.docker Added Docker and short instructions 2024-03-07 21:57:25 +00:00
.gitignore Added Additional features 2024-03-04 22:19:39 +00:00
Cargo.lock Commented and Refactored codeMade ids in the database i64 values to increase available id spaceMoved some structs and enums from main.rs to models.rsCommented structs and functions 2024-03-06 22:43:16 +00:00
Cargo.toml Commented and Refactored codeMade ids in the database i64 values to increase available id spaceMoved some structs and enums from main.rs to models.rsCommented structs and functions 2024-03-06 22:43:16 +00:00
Dockerfile Added Docker and short instructions 2024-03-07 21:57:25 +00:00
README.md Added Docker and short instructions 2024-03-07 21:57:25 +00:00
Rocket.toml Commented and Refactored codeMade ids in the database i64 values to increase available id spaceMoved some structs and enums from main.rs to models.rsCommented structs and functions 2024-03-06 22:43:16 +00:00
deploy.sh Added Docker and short instructions 2024-03-07 21:57:25 +00:00
diesel.toml Added Additional features 2024-03-04 22:19:39 +00:00
docker-compose.yml Added Docker and short instructions 2024-03-07 21:57:25 +00:00

README.md

Request Mirror

This application provides a web ui for sending get/post requests and provides a visual ui for looking at what the application received. This is written in rust.

TODO:

  • Update Readme
  • Document
  • Setup Docker

Docker

This is the current setup for getting the webapp to work with docker. This may not work on your machine, this is beta.

cd request-mirror

sh deploy.sh

This will setup the container. A better setup will come in the future.