A Super Lightweight RUST-based CRUD System for managing MySQL Databases
Currently, only browsing (viewing databases, tables and table values) is supported. Adding, editing and deleting will be added in the future. However, you can still use raw SQL queries to do that.
- Clone this repository
- Install Rust (https://www.rust-lang.org/tools/install)
- Install MySQL (https://dev.mysql.com/downloads/installer/)
- Run
cargo run
in the project directory - Open
http://localhost:8080
in your browser
- Clone this repository
- Install Docker (https://docs.docker.com/get-docker/)
- Run
docker build -t easycrud .
in the project directory - Run
docker run -p 8080:8080 easycrud
- Open
http://localhost:8080
in your browser
- Open
http://localhost:8080
in your browser - Enter your MySQL credentials