-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgithub_setup.sh
More file actions
executable file
·34 lines (34 loc) · 1.49 KB
/
Copy pathgithub_setup.sh
File metadata and controls
executable file
·34 lines (34 loc) · 1.49 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
#!/bin/bash
echo "🚢 Weather Engine Maritime - GitHub Setup"
echo "========================================"
echo "Step 1: Go to GitHub.com and create a new repository:"
echo " 1. Visit: https://github.com/new"
echo " 2. Repository name: weather-engine-maritime"
echo " 3. Description: Maritime Weather Intelligence & Route Optimization for MariTHON Hackathon"
echo " 4. Keep it Public (for hackathon judges)"
echo " 5. DON'T initialize with README (we already have one)"
echo " 6. Click 'Create repository'"
echo ""
echo "Step 2: Copy the GitHub repository URL and run these commands:"
echo ""
echo "# Replace YOUR_GITHUB_USERNAME with your actual username"
echo "git remote add origin https://github.com/YOUR_GITHUB_USERNAME/weather-engine-maritime.git"
echo "git branch -M main"
echo "git push -u origin main"
echo ""
echo "Step 3: After pushing, your repository will be available at:"
echo "https://github.com/YOUR_GITHUB_USERNAME/weather-engine-maritime"
echo ""
echo "📋 For MariTHON Submission:"
echo "- Repository URL: https://github.com/YOUR_GITHUB_USERNAME/weather-engine-maritime"
echo "- Demo Instructions: See README.md"
echo "- Live Demo: Clone → Run backend → Open frontend/demo.html"
echo "- Tech Stack: FastAPI + Python + HTML5 + TailwindCSS"
echo ""
echo "🎯 Repository Contents:"
echo "✅ Complete MVP source code"
echo "✅ Interactive demo (frontend/demo.html)"
echo "✅ API documentation"
echo "✅ Setup instructions"
echo "✅ Architecture diagrams"
echo "✅ Performance metrics"