add initialize script

This commit is contained in:
Jazz Turner-Baggs 2025-07-22 06:40:08 -07:00
parent adde56532b
commit 50ecdcd982
No known key found for this signature in database
2 changed files with 13 additions and 0 deletions

8
initialize.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/bash
echo "Running setup task..."
echo "Init Submodules..."
git submodule update --init --recursive
echo "Building Waku..."
( cd vendor/waku && make -j14 librln)

View File

@ -8,6 +8,11 @@ srcDir = "src"
bin = @["waku_vibe_template"]
# Basic build task
task initialize, "Initialize the project after cloning":
exec "./initialize.sh"
# Dependencies
requires "nim >= 2.2.4"