-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathdeploy-now.sh
More file actions
executable file
·36 lines (33 loc) · 1.05 KB
/
deploy-now.sh
File metadata and controls
executable file
·36 lines (33 loc) · 1.05 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
#!/bin/bash
echo "🚀 SpectraSense - Quick Deploy to Render"
echo "========================================"
echo ""
echo "Your GitHub repo: https://github.com/SaaiAravindhRaja/SpectraSense"
echo ""
echo "📋 Quick Steps:"
echo ""
echo "1. Opening Render dashboard in your browser..."
echo ""
echo "2. Click 'New +' → 'Web Service'"
echo ""
echo "3. Connect GitHub and select: SaaiAravindhRaja/SpectraSense"
echo ""
echo "4. Configuration (auto-filled from render.yaml):"
echo " ✓ Name: spectrasense-ai"
echo " ✓ Runtime: Python 3"
echo " ✓ Build: pip install -r requirements.txt"
echo " ✓ Start: gunicorn app:app"
echo " ✓ Plan: Free"
echo ""
echo "5. Click 'Create Web Service' → Wait 5-10 minutes"
echo ""
echo "6. Your app will be live at:"
echo " 🌐 https://spectrasense-ai.onrender.com"
echo ""
echo "========================================"
echo ""
# Open Render dashboard
open "https://dashboard.render.com/create?type=web"
echo "✨ Browser opened! Follow the steps above."
echo ""
echo "Need the full guide? Run: cat DEPLOYMENT.md"