-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdeploy-setup.bat
More file actions
48 lines (46 loc) · 1.2 KB
/
deploy-setup.bat
File metadata and controls
48 lines (46 loc) · 1.2 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
@echo off
echo.
echo ========================================
echo Text Annotation Agent - Setup
echo ========================================
echo.
REM Check if git is initialized
if not exist ".git" (
echo Initializing git repository...
git init
git add .
git commit -m "Initial commit: AI Text Annotation Agent"
echo Git initialized!
) else (
echo Git already initialized!
)
echo.
echo ========================================
echo DEPLOYMENT STEPS
echo ========================================
echo.
echo 1. Create GitHub repository:
echo Go to: https://github.com/new
echo.
echo 2. Connect your repo:
echo git remote add origin YOUR_GITHUB_REPO_URL
echo git branch -M main
echo git push -u origin main
echo.
echo 3. Deploy to Render.com (FREE):
echo - Visit: https://render.com
echo - Sign up and login
echo - Click "New +" then "Web Service"
echo - Connect your GitHub repository
echo - Add environment variable:
echo Name: GEMINI_API_KEY
echo Value: [your API key]
echo - Click "Create Web Service"
echo.
echo 4. Wait 5-10 minutes for deployment
echo.
echo 5. Share your live URL for feedback!
echo.
echo See DEPLOYMENT.md for more options
echo.
pause