BugVault/README.md

38 lines
829 B
Markdown

# BugVault
Open Source GPL3 bug tracker. This bug tracker prioritizes ease of use.
**NOTE**: Bug Vault is hardcoded to interact with the instance of `bugvaultd` running at `localhost:7400`. If you want to change this, you will need to change the `host` and `port` values located in `lib/dart/bugvault.dart`.
# Compilation
## Linux
To build for Linux, you are going to want to run the following command:
```bash
flutter pub get
flutter build linux
```
## Android
To build for Android, run the following command:
```bash
flutter pub get
flutter build apk
```
## Windows
To build for Windows, run the following command:
```bat
flutter pub get
flutter build windows
```
# About the Server
The BugVault server is generally referred to as `bugvaultd`. This small executable handles _most_ of the server's core functions.