Issue tracking software written in Rust
Go to file
2022-02-06 18:48:58 -06:00
app Initial frontend for registering 2022-02-06 18:48:58 -06:00
src Create backend for registering 2022-02-06 18:09:32 -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 Enable sycamore router 2022-01-31 14:57:44 -06:00
Cargo.toml Add API for creating issues 2022-01-30 15:38:20 -06:00
README.md Add README 2022-02-06 17:44:11 -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
  • Comments
  • Open/Close issues