Skip to content

underscorekadji/ai-dashboard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

10 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

AI Tools Monitoring Dashboard

Containerized personal dashboard built with Glance that aggregates various AI tools resources including GitHub Copilot, ChatGPT, and Claude Code. Provides news, status, videos, blog posts, and handy links in a single interface with health checks, persistent data, and simple scripts to run locally via Docker.

Features

  • Multi-page Glance dashboard with dedicated sections for:
    • GitHub Copilot (status, RSS, YouTube playlist, Reddit, bookmarks)
    • ChatGPT resources and updates
    • Claude Code documentation and resources
  • Docker Compose with healthcheck, persistent volume, and simple networking
  • Start/stop/restart scripts that bootstrap .env automatically
  • Modular configuration system using YAML includes in config/

Prerequisites

  • Docker Desktop (includes Docker Compose v2)
  • macOS, Linux, or Windows with WSL2

Quick start

  1. Create your environment file (optional; script will create it for you):
cp .env.example .env
  1. Start the dashboard:
./scripts/start.sh
  1. Open the UI:
  1. Stop or restart when needed:
./scripts/stop.sh
./scripts/restart.sh

Configuration

  • Main entrypoint: config/glance.yml
    • Includes multiple page configurations:
      • config/gh-copilot.yml - GitHub Copilot resources (status, RSS, YouTube, Reddit, repositories)
      • config/chatgpt.yml - ChatGPT-related resources and updates
      • config/claude-code.yml - Claude Code documentation and tools
  • Ports and host binding are controlled via .env:
# .env
GLANCE_PORT=8080
GLANCE_HOST=0.0.0.0
  • Docker Compose mounts ./config into the container read-only and persists data in the glance_data volume.

If you want to customize or add more pages/widgets, edit the YAML files in config/ and restart the stack.

Project structure

.
├── assets/
│   └── custom.css              # (optional) place for styling; not mounted by default
├── config/
│   ├── glance.yml              # main Glance configuration (includes all pages)
│   ├── gh-copilot.yml          # GitHub Copilot widgets and layout
│   ├── chatgpt.yml             # ChatGPT resources configuration
│   └── claude-code.yml         # Claude Code resources configuration
├── docs/
│   ├── github_copilot-resources.md     # curated Copilot resources
│   ├── chatgpt-resources.md             # ChatGPT resource collection
│   └── anthropic_claude-code-resources.md # Claude Code documentation
├── scripts/
│   ├── start.sh                # creates .env (if missing), pulls images, and starts services
│   ├── stop.sh                 # stops services
│   └── restart.sh              # stop + start
├── docker-compose.yml          # Glance service, healthcheck, volume and network
├── .env.example                # default environment variables
└── README.md

Service details

  • Image: glanceapp/glance:latest
  • Container: ai-dashboard-glance
  • Port mapping: ${GLANCE_PORT:-8080}:8080
  • Healthcheck: HTTP check on http://localhost:8080
  • Data persistence: glance_data Docker volume

Reverse proxy (optional)

An example Nginx service is scaffolded (commented) in docker-compose.yml for SSL termination. To use it, add your nginx.conf and certificates, then uncomment the service and volumes.

Maintenance

  • Update to the latest image:
docker-compose pull
./scripts/restart.sh
  • View logs:
docker-compose logs -f glance

Troubleshooting

  • Docker isn’t running: start Docker Desktop and retry.
  • Port already in use: change GLANCE_PORT in .env, then restart.
  • Blank page or config errors: validate YAML in config/ and check logs with docker compose logs glance.

Use: docker-compose logs glance if you’re following the scripts in this repo.

References

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 2

  •  
  •