Initial commit

This commit is contained in:
Aodhan Collins
2025-12-29 20:50:25 +00:00
commit 2417dcc090
50 changed files with 1596 additions and 0 deletions

20
deploy.sh Normal file
View File

@@ -0,0 +1,20 @@
#!/bin/bash
# Deployment script for AODH Pack
TARGET_DIR="/home/aodhan/gitclones/ComfyUI/custom_nodes/aodh-pack"
SOURCE_DIR="$(pwd)"
echo "Deploying AODH Pack to $TARGET_DIR..."
# Create target directory if it doesn't exist
mkdir -p "$TARGET_DIR"
# Sync files, excluding git and other unnecessary files
# Using cp -r for simplicity, but rsync would be better if available
cp -r "$SOURCE_DIR/__init__.py" "$TARGET_DIR/"
cp -r "$SOURCE_DIR/nodes" "$TARGET_DIR/"
cp -r "$SOURCE_DIR/README.md" "$TARGET_DIR/"
cp -r "$SOURCE_DIR/requirements.txt" "$TARGET_DIR/"
echo "Deployment complete!"