-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup_github.bat
More file actions
29 lines (24 loc) · 1.02 KB
/
Copy pathsetup_github.bat
File metadata and controls
29 lines (24 loc) · 1.02 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
@echo off
echo ============================================
echo ModelVault - GitHub Setup Script
echo ============================================
REM Create GitHub repo via gh CLI
gh repo create modelvault --public --description "AI/ML Model Management Platform - FastAPI + React startup project" --homepage "https://github.com/avase33/modelvault"
REM Initialize git
git init
git add .
git commit -m "feat: initial commit - ModelVault AI/ML Platform
Full-stack AI/ML platform startup project:
- FastAPI backend with JWT auth, model registry, dataset management,
training job orchestration, and inference API
- React + TypeScript frontend with dashboard, model browser,
dataset manager, training monitor, and API key management
- PostgreSQL + Redis + Celery for production workloads
- Docker Compose for local development
- GitHub Actions CI/CD pipeline"
git branch -M main
git remote add origin https://github.com/avase33/modelvault.git
git push -u origin main
echo.
echo Done! Visit: https://github.com/avase33/modelvault
pause