Issue tracking software written in Rust
Go to file
2022-03-05 17:58:00 -06:00
app Serve user data along with issues 2022-03-05 17:46:33 -06:00
src Rustfmt 2022-03-05 17:53:59 -06:00
.gitignore Create build script 2022-01-31 11:21:07 -06:00
build.sh Create build script 2022-01-31 11:21:07 -06:00
Cargo.lock encode user as base64 and store in localstorage 2022-02-10 11:58:28 -06:00
Cargo.toml encode user as base64 and store in localstorage 2022-02-10 11:58:28 -06:00
README.md Update README 2022-03-05 17:58:00 -06:00

Bugspray

A simple issue tracking app written entirely in Rust.

To build locally, you need to install the latest nightly Rust, and you need to add the wasm32-unkown-unknown target:

rustup override set nightly
rustup target add wasm32-unknown-unknown

Then, simply run ./build.sh and then run the compiled executable.

Make sure to set the BUGSPRAY_DB environment variable so that bugspray can populate your database.

TODO:

  • User registration
  • User login
  • Navbar
  • Link issues to users
  • Make a rust-toolchain.toml
  • Comments
  • Open/Close issues