about summary refs log tree commit diff
path: root/README.MD
blob: 0566989a194d45a2bb8210bcf528916106d41440 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# BugMine

Decentralised issue tracking system, built on [Matrix](https://matrix.org) using [Rory&::LibMatrix](https://cgit.rory.gay/matrix/LibMatrix.git).

# Deploying the web interface

Make sure to follow your web server's instructions to deploy a single-page application.
```sh
git clone --recursive $REPO
cd BugMine/BugMine.Web
dotnet publish
cp -rv bin/Release/net8.0/publish/wwwroot /var/www/html_bugmine
```

# Running a project

```sh
cd $PROJECT
dotnet run
```

# Contributing

```sh
# Prepare patch set
mkdir patches
git format-patch --output-directory "./patches" @{u}..

# Send patches
```

### Developer utility commands

Error reporting upon file save:
```sh
dotnet watch build --property WarningLevel=0
```

Hot rebuild on file save:
```sh
dotnet watch run --no-hot-reload --property WarningLevel=0
```