mirror of
https://github.com/versia-pub/activitypub.git
synced 2026-03-13 02:49:17 +01:00
[feat]: basic nix dev enviroment
This commit is contained in:
parent
51c7a6d6a2
commit
091b8efe8e
10 changed files with 545 additions and 260 deletions
14
justfile
Normal file
14
justfile
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
default:
|
||||
@just --list
|
||||
|
||||
# Auto-format the source tree
|
||||
fmt:
|
||||
treefmt
|
||||
|
||||
# Run 'cargo run' on the project
|
||||
run *ARGS:
|
||||
cargo run {{ARGS}}
|
||||
|
||||
# Run 'cargo watch' to run the project (auto-recompiles)
|
||||
watch *ARGS:
|
||||
cargo watch -x "run -- {{ARGS}}"
|
||||
Loading…
Add table
Add a link
Reference in a new issue