-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub-setup.sh
More file actions
executable file
·53 lines (44 loc) · 1.83 KB
/
Copy pathgithub-setup.sh
File metadata and controls
executable file
·53 lines (44 loc) · 1.83 KB
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
#!/bin/bash
# 🚀 Quick GitHub Setup Commands
# Run these commands to complete the repository setup
echo "🚀 AI Development Toolkit Template - GitHub Setup"
echo "================================================="
echo ""
# Check current status
echo "📍 Current directory: $(pwd)"
echo "📍 Git status:"
git status --short
echo ""
echo "🔗 Next Steps:"
echo ""
echo "1. Create Repository on GitHub:"
echo " 👉 Go to: https://github.com/new"
echo " 📝 Repository name: ai-dev-toolkit-template"
echo " 📝 Description: 🚀 Complete AI Development Toolkit Template - Add RAG, MCP, and AI assistance to any project in 2 minutes"
echo " ✅ Public repository"
echo " ❌ Do NOT initialize with README"
echo ""
echo "2. Add remote and push:"
echo " git remote add origin https://github.com/hartou/ai-dev-toolkit-template.git"
echo " git push -u origin main"
echo ""
echo "3. Configure as Template:"
echo " 👉 Go to: https://github.com/hartou/ai-dev-toolkit-template/settings"
echo " ✅ Check 'Template repository'"
echo ""
echo "4. Add Topics (for discoverability):"
echo " ai-development, rag-system, mcp-server, semantic-search, development-tools, template, docker, nodejs"
echo ""
echo "5. Test the template:"
echo " 👉 Go to: https://github.com/hartou/ai-dev-toolkit-template"
echo " ✅ Click 'Use this template' button"
echo ""
echo "📊 Repository Statistics:"
echo " 📁 Files: $(find . -type f | wc -l)"
echo " 📄 Documentation files: $(find . -name "*.md" | wc -l)"
echo " 🔧 Scripts: $(find . -name "*.sh" | wc -l)"
echo " 📦 Package configs: $(find . -name "package.json" | wc -l)"
echo ""
echo "🎉 Template is ready for publication!"
echo "Once published, users can deploy with:"
echo " curl -sSL https://raw.githubusercontent.com/hartou/ai-dev-toolkit-template/main/scripts/deploy.sh | bash"