Remove dev subcommand, add standalone docker-compose with external URLs
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful

This commit is contained in:
buenosairesam
2026-01-02 23:35:19 -03:00
parent 47cd737bc0
commit c4e1f240b8
3 changed files with 84 additions and 68 deletions

View File

@@ -13,13 +13,13 @@ TARGET="${1:-}"
if [ "$TARGET" = "--all" ]; then
echo "Building all targets..."
python build.py dev --all
python build.py --all
elif [ -n "$TARGET" ]; then
echo "Building gen/$TARGET/..."
python build.py dev --cfg "$TARGET"
python build.py --cfg "$TARGET"
else
echo "Building gen/standalone/..."
python build.py dev
python build.py
fi
echo ""