# statusboard **Repository Path**: mirrors_svenanders/statusboard ## Basic Information - **Project Name**: statusboard - **Description**: Just another damn simple status board / dashboard. - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-08-18 - **Last Updated**: 2026-03-21 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # Miracle Board Helps you to check if your websites are up. Configured for Heroku No need for config vars. Simply create a new heroku site with the Heroku Toolbelt and push ## Configuration Very simple. ```json { "tasks": [ { "type": "http", "id": "xhacker_im", "title": "xhacker.im", "address": "http://xhacker.im" }, { "type": "shell", "id": "vps", "title": "VPS", "command": "ping -c 1 xhacker.im" } ] } ``` By default, we expect ``http`` tasks to have status code ``200``, ``shell`` tasks to have return code ``0``. ``command`` field in ``shell`` tasks will be executed directly, please use with caution. ``id`` is for internal use, must be unique. ## Deployment ### Run locally ```bash pip install -r requirements.txt python hello.py ``` ### Deploy Please refer to Flask documentation: http://flask.pocoo.org/docs/0.10/deploying/