An open API service indexing awesome lists of open source software.

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

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