Development environment functions

This commit is contained in:
geoffsee
2025-08-15 18:59:05 -04:00
commit e289de2bd7
58 changed files with 11955 additions and 0 deletions

16
packages/scripts/setup.sh Executable file
View 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