Personal admin panel — manage notes, family credentials, and more.
| Layer | Technology |
|---|---|
| Backend | ASP.NET Core 10 Web API |
| Frontend | Angular 22 |
| Database | MongoDB |
| Deploy | Backend → Render · Frontend → GitHub Pages |
| Domain | admin.keshavsingh.in |
admin/
├── backend/ # ASP.NET Core 10 Web API
│ ├── Controllers/ # REST endpoints
│ ├── Models/ # Data models
│ └── Services/ # Business logic & MongoDB service
├── frontend/ # Angular application
│ └── src/
│ ├── app/
│ │ ├── core/services/ # ApiService (HTTP)
│ │ └── features/ # dashboard, notes
│ └── environments/ # dev & prod API URLs
├── render.yaml # Render deployment config
└── .github/workflows/
├── deploy-frontend.yml # GitHub Pages deploy
└── backend-ci.yml # .NET build CI
cd backend
# set MONGODB_CONNECTION_STRING in your environment or appsettings.Development.json
dotnet run
# API available at http://localhost:5000
cd frontend
npm install
npm start
# App available at http://localhost:4200
render.yaml blueprint will configure the service automatically.MongoDbSettings__ConnectionString environment variable (secret) to your MongoDB Atlas URI.Pushing to main triggers the Deploy Angular to GitHub Pages workflow automatically.
The custom domain admin.keshavsingh.in is configured via the frontend/public/CNAME file.
| Method | Path | Description |
|---|---|---|
| GET | /api/notes | List all notes |
| GET | /api/notes/{id} | Get note by ID |
| POST | /api/notes | Create note |
| PUT | /api/notes/{id} | Update note |
| DELETE | /api/notes/{id} | Delete note |
| GET | /health | Health check |