https://github.com/dsrathore1/mlops-roadmap
Interactive MLOps Roadmap with Vite + React | Learn CI/CD, pipelines, deployment, and modern Machine Learning Operations practices
https://github.com/dsrathore1/mlops-roadmap
cicd data-science devops github-actions github-pages learning-resources machine-learning mlops react roadmap vite
Last synced: 3 days ago
JSON representation
Interactive MLOps Roadmap with Vite + React | Learn CI/CD, pipelines, deployment, and modern Machine Learning Operations practices
- Host: GitHub
- URL: https://github.com/dsrathore1/mlops-roadmap
- Owner: dsrathore1
- Created: 2026-04-08T12:26:50.000Z (3 months ago)
- Default Branch: main
- Last Pushed: 2026-04-08T13:28:08.000Z (3 months ago)
- Last Synced: 2026-04-08T14:34:59.129Z (3 months ago)
- Topics: cicd, data-science, devops, github-actions, github-pages, learning-resources, machine-learning, mlops, react, roadmap, vite
- Language: JavaScript
- Homepage: https://dsrathore1.github.io/MLOps-Roadmap/
- Size: 58.6 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# 🚀 MLOps Elite Roadmap
**12-Week interactive roadmap: Python + DevOps + AWS → MTech + MLOps Engineer**
Live at: `https://YOUR_USERNAME.github.io/mlops-roadmap`
---
## Deploy to GitHub Pages in 5 steps
### Step 1 — Create GitHub repo
1. Go to github.com → click **New repository**
2. Name it exactly: `mlops-roadmap`
3. Set to **Public**
4. Do NOT initialize with README (you already have one)
5. Click **Create repository**
### Step 2 — Upload this folder
```bash
# In your terminal, navigate to this folder, then:
git init
git add .
git commit -m "🚀 Initial commit - MLOps roadmap"
git branch -M main
git remote add origin https://github.com/YOUR_USERNAME/mlops-roadmap.git
git push -u origin main
```
> Replace `YOUR_USERNAME` with your actual GitHub username
### Step 3 — Enable GitHub Pages
1. Go to your repo on GitHub
2. Click **Settings** tab
3. Click **Pages** in the left sidebar
4. Under **Source** → select **GitHub Actions**
5. Click **Save**
### Step 4 — Wait ~2 minutes
GitHub Actions will automatically build and deploy your site.
You can watch progress under the **Actions** tab in your repo.
### Step 5 — Visit your live site
```
https://YOUR_USERNAME.github.io/mlops-roadmap
```
---
## If you rename the repo
Open `vite.config.js` and change:
```js
base: '/mlops-roadmap/',
// to:
base: '/your-new-repo-name/',
```
Then push again.
## Local development
```bash
npm install
npm run dev
# Opens at http://localhost:5173
```
---
**Progress is saved in your browser's localStorage** — it persists across sessions on the same device/browser.