Spaces:
Sleeping
Sleeping
File size: 3,466 Bytes
c7e9899 7500864 c7e9899 7500864 c7e9899 7500864 c7e9899 7500864 c7e9899 7500864 c7e9899 7500864 c7e9899 7500864 c7e9899 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 | #!/bin/bash
# Script to deploy the app to HuggingFace Spaces and GitHub
# Colors for output
GREEN='\033[0;32m'
BLUE='\033[0;34m'
YELLOW='\033[1;33m'
RED='\033[0;31m'
NC='\033[0m' # No Color
echo -e "${BLUE}π Deploying Template Matching Demo...${NC}"
echo ""
# Check if we're in a git repository
if ! git rev-parse --is-inside-work-tree > /dev/null 2>&1; then
echo -e "${RED}β Not a git repository${NC}"
exit 1
fi
# Check if there are uncommitted changes
if ! git diff-index --quiet HEAD --; then
echo -e "${YELLOW}β οΈ You have uncommitted changes. Please commit them first.${NC}"
echo ""
echo "Uncommitted files:"
git status --short
echo ""
read -p "Do you want to commit all changes now? (y/n) " -n 1 -r
echo
if [[ $REPLY =~ ^[Yy]$ ]]; then
read -p "Enter commit message: " commit_msg
git add .
git commit -m "$commit_msg"
echo -e "${GREEN}β
Changes committed${NC}"
echo ""
else
echo -e "${RED}β Deployment cancelled. Please commit your changes first.${NC}"
exit 1
fi
fi
# Get current branch
current_branch=$(git branch --show-current)
echo -e "${BLUE}π Current branch: ${current_branch}${NC}"
# Check if we're on main/master branch
if [[ "$current_branch" != "main" && "$current_branch" != "master" ]]; then
echo -e "${YELLOW}β οΈ Warning: You're not on the main/master branch${NC}"
read -p "Continue anyway? (y/n) " -n 1 -r
echo
if [[ ! $REPLY =~ ^[Yy]$ ]]; then
echo -e "${RED}β Deployment cancelled${NC}"
exit 1
fi
fi
# Check which remotes exist
has_origin=$(git remote | grep -c "^origin$")
has_hf=$(git remote | grep -c "^hf$")
echo ""
echo -e "${BLUE}π€ Pushing to remote repositories...${NC}"
echo ""
# Push to GitHub (origin)
if [ $has_origin -eq 1 ]; then
echo -e "${BLUE}β Pushing to GitHub (origin)...${NC}"
git push origin $current_branch
if [ $? -eq 0 ]; then
echo -e "${GREEN} β
GitHub updated successfully${NC}"
else
echo -e "${RED} β Failed to push to GitHub${NC}"
exit 1
fi
else
echo -e "${YELLOW}β οΈ No 'origin' remote found, skipping GitHub${NC}"
fi
echo ""
# Push to HuggingFace Spaces (hf)
if [ $has_hf -eq 1 ]; then
echo -e "${BLUE}β Pushing to HuggingFace Spaces (hf)...${NC}"
git push hf $current_branch
if [ $? -eq 0 ]; then
echo -e "${GREEN} β
HuggingFace Spaces updated successfully${NC}"
else
echo -e "${RED} β Failed to push to HuggingFace Spaces${NC}"
echo -e "${YELLOW} π‘ Tip: Make sure you have access to the HuggingFace Space${NC}"
exit 1
fi
else
echo -e "${YELLOW}β οΈ No 'hf' remote found${NC}"
echo -e "${BLUE}π‘ To add HuggingFace Spaces remote, run:${NC}"
echo -e " ${GREEN}git remote add hf https://huggingface.co/spaces/amithjkamath/template-matching${NC}"
fi
# Success message
echo ""
echo -e "${GREEN}β
Deployment complete!${NC}"
echo ""
if [ $has_origin -eq 1 ]; then
echo -e "${BLUE}π¦ GitHub Repository:${NC}"
echo -e " ${GREEN}https://github.com/amithjkamath/template-matching${NC}"
echo ""
fi
if [ $has_hf -eq 1 ]; then
echo -e "${BLUE}π HuggingFace Space:${NC}"
echo -e " ${GREEN}https://huggingface.co/spaces/amithjkamath/template-matching${NC}"
echo ""
echo -e "${YELLOW}π‘ Note: It may take a few minutes for the HuggingFace Space to rebuild.${NC}"
fi
|