A simple CRUD application for schools using React + Rust.
To start the server:
cd ./backend
cargo run
This will start the server on port 8000
.
Note: A cors policy has been added to allow a frontend to make requests from port 5173
.
First install the node packages
cd ./frontend
npm install
Then run
npm run dev
You will then be able to access the frontend on http://localhost:5173/
A small set of tests have been added using axum-test-helper
cd ./backend
cargo test
TODO