This is a tutorial project that implements a primitive task board.
It was created to learn the basic concepts of asynchronous programming in rust using Tokio, as well as to get acquainted with hyper and next.js
The project is based on the tutorial from tokio.
The database or cache server is a minimal implementation of Redis. The main application server is built using hyper. The frontend is built with next.js
- new terminal
cd mini-casher
cargo run --bin cash-server
- new terminal
cd mini-casher
cargo run --bin cmd
- check connection on terminal
ping
- you should get a responsepong
- new terminal
cd app-server
cargo run
- new terminal
cd static
npm run dev
- in browser
localhost:3000