mirror of
https://github.com/logos-messaging/nim-chat-poc.git
synced 2026-01-02 14:13:10 +00:00
add initialize script
This commit is contained in:
parent
adde56532b
commit
50ecdcd982
8
initialize.sh
Executable file
8
initialize.sh
Executable 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)
|
||||
@ -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"
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user