Refactor setup workflow

This commit is contained in:
MangoPig
2026-05-31 23:24:18 +01:00
parent 5cefa4019b
commit 58531bf579
24 changed files with 478 additions and 103 deletions

20
Commands/Lang/mod.just Normal file
View File

@@ -0,0 +1,20 @@
project_root := justfile_directory()
scripts_dir := project_root + "/Scripts"
node:
bash '{{scripts_dir}}/node.sh'
go:
bash '{{scripts_dir}}/go.sh'
rust:
bash '{{scripts_dir}}/rust.sh'
python:
bash '{{scripts_dir}}/python.sh'
r:
bash '{{scripts_dir}}/r.sh'
cpp:
bash '{{scripts_dir}}/cpp.sh'