about summary refs log tree commit diff
path: root/README.MD
diff options
context:
space:
mode:
authorRory& <root@rory.gay>2024-02-25 09:15:06 +0100
committerRory& <root@rory.gay>2024-02-25 09:15:06 +0100
commitb27978162f3215f49837fa72d81c94078776db0d (patch)
tree442b63ab0819d62d8f366bdddc1cb42a74addb8c /README.MD
downloadMatrixMediaGate-b27978162f3215f49837fa72d81c94078776db0d.tar.xz
Initial commit
Diffstat (limited to 'README.MD')
-rw-r--r--README.MD25
1 files changed, 25 insertions, 0 deletions
diff --git a/README.MD b/README.MD
new file mode 100644

index 0000000..4c0a94b --- /dev/null +++ b/README.MD
@@ -0,0 +1,25 @@ +# Project Name + +# Installation + +# 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 +inotifywait -rmqe CLOSE_WRITE --include '.*\.cs$' . | while read l; do clear; dotnet build --property WarningLevel=0; done +``` + +Hot rebuild on file save: +```sh +dotnet watch run --no-hot-reload --property WarningLevel=0 +```