Skip to content

Latest commit

 

History

History
9 lines (6 loc) · 444 Bytes

README.md

File metadata and controls

9 lines (6 loc) · 444 Bytes

A community guide to the Rust ecosystem

Testing locally

  • Run cargo run then open http://localhost:3333 in your browser
  • The port can be overriden using the PORT environment variable
  • If you want to automatically recompile and re-run on save you can install cargo-watch (cargo install cargo-watch) then and use cargo watch -x run instead of cargo run.