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

https://github.com/openpipe/art-star-count

Display ART repository star count on a tablet
https://github.com/openpipe/art-star-count

Last synced: 4 months ago
JSON representation

Display ART repository star count on a tablet

Awesome Lists containing this project

README

          

# ART Star Count Display

A simple website that displays the current star count for the [OpenPipe/ART](https://github.com/OpenPipe/ART) GitHub repository.

## Features
- Large, tasteful display of star count
- Auto-refreshes every 30 seconds
- Loads live count on page load
- Clean, modern design

## Deployment

### Option 1: Vercel (Recommended - Easiest)
1. Go to [vercel.com](https://vercel.com)
2. Sign up/login with GitHub
3. Click "Add New..." → "Project"
4. Import this repository or drag the `art-star-count` folder
5. Click "Deploy"

### Option 2: Netlify Drop
1. Go to [app.netlify.com/drop](https://app.netlify.com/drop)
2. Drag the `art-star-count` folder into the browser
3. Your site will be deployed instantly

### Option 3: GitHub Pages
1. Create a new GitHub repository
2. Push this code to the repository
3. Go to Settings → Pages
4. Enable GitHub Pages from the main branch
5. Your site will be available at `https://[username].github.io/[repo-name]`

## Local Development
```bash
# Using Python
python -m http.server 8000

# Or using Node.js
npx http-server
```

Then open http://localhost:8000 in your browser.