Issue tracking software written in Rust
Go to file
2022-02-11 11:51:36 -06:00
app Navigation buttons 2022-02-11 11:51:36 -06:00
src Add API to fetch a user by username 2022-02-09 14:06:33 -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-02-10 12:28:51 -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 # TODO: make a rustup.toml
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
  • Comments
  • Open/Close issues