mirror of
https://github.com/seemueller-io/cluster.git
synced 2025-09-08 22:56:46 +00:00
Development environment functions
This commit is contained in:
16
packages/scripts/setup.sh
Executable file
16
packages/scripts/setup.sh
Executable file
@@ -0,0 +1,16 @@
|
||||
#!/usr/bin/env sh
|
||||
|
||||
set -e
|
||||
|
||||
(cargo check &)
|
||||
|
||||
bun i
|
||||
|
||||
for dir in deploy/dev/*/; do
|
||||
if [ -f "${dir}/cdktf.json" ]; then
|
||||
echo "Running cdktf get in ${dir}"
|
||||
cd "${dir}" && cdktf get && cd - > /dev/null
|
||||
fi
|
||||
done
|
||||
|
||||
wait
|
Reference in New Issue
Block a user