https://github.com/snokam/cursor-workshop
Getting Started with AI-Assisted Development
https://github.com/snokam/cursor-workshop
ai backend frontend
Last synced: 4 months ago
JSON representation
Getting Started with AI-Assisted Development
- Host: GitHub
- URL: https://github.com/snokam/cursor-workshop
- Owner: snokam
- Created: 2025-11-18T14:41:45.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2025-11-19T21:41:27.000Z (7 months ago)
- Last Synced: 2025-11-19T23:17:05.602Z (7 months ago)
- Topics: ai, backend, frontend
- Language: TypeScript
- Homepage:
- Size: 193 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Cursor Workshop
A starter project for learning AI-assisted development with Cursor.
## Project Structure
```
cursor-workshop/
├── frontend/ # Next.js application
├── backend/ # Express API server
└── micros/ # Micro-frontends (navbar, footer)
```
## Getting Started
### Install dependencies
```bash
npm install
```
### Run development servers
```bash
npm run dev
```
This starts both:
- Frontend: http://localhost:3000
- Backend: http://localhost:3001
### Run individually
```bash
npm run dev:frontend # Frontend only
npm run dev:backend # Backend only
```
## API Endpoints
- `GET /api/posts` - List blog posts
- `GET /api/posts/:slug` - Get single post
- `GET /api/tags` - Get all tags
- `GET /api/health` - Health check