{"id":28470428,"url":"https://github.com/wardweistra/hipfrog","last_synced_at":"2025-07-01T17:31:28.451Z","repository":{"id":203071971,"uuid":"59669813","full_name":"wardweistra/hipfrog","owner":"wardweistra","description":"A Hipchat bot for accessing Glassfrog","archived":false,"fork":false,"pushed_at":"2017-09-14T10:17:49.000Z","size":210,"stargazers_count":3,"open_issues_count":3,"forks_count":2,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-07T09:35:22.965Z","etag":null,"topics":["chatbot","glassfrog","hipchat","holacracy"],"latest_commit_sha":null,"homepage":"https://host.wardweistra.nl/hipfrog/","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"lgpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/wardweistra.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null}},"created_at":"2016-05-25T14:24:35.000Z","updated_at":"2023-06-01T09:45:43.000Z","dependencies_parsed_at":null,"dependency_job_id":"fcbd6cfa-8a9f-491c-bd16-528cd1c1f44b","html_url":"https://github.com/wardweistra/hipfrog","commit_stats":null,"previous_names":["wardweistra/hipfrog"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/wardweistra/hipfrog","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wardweistra%2Fhipfrog","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wardweistra%2Fhipfrog/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wardweistra%2Fhipfrog/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wardweistra%2Fhipfrog/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/wardweistra","download_url":"https://codeload.github.com/wardweistra/hipfrog/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/wardweistra%2Fhipfrog/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":263007174,"owners_count":23398775,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["chatbot","glassfrog","hipchat","holacracy"],"created_at":"2025-06-07T09:30:22.838Z","updated_at":"2025-07-01T17:31:28.442Z","avatar_url":"https://github.com/wardweistra.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# HipFrog\n\u003cimg width=100px align=right alt=\"Hipfrog\" src=\"/glassfrog/static/hipfrog.png\"\u003e\n\u003ca href=\"https://travis-ci.org/wardweistra/hipfrog\"\u003e\u003cimg alt=\"Build Status\" src=\"https://travis-ci.org/wardweistra/hipfrog.svg?branch=master\"\u003e\u003c/a\u003e\n\n\u003ca href=\"https://codecov.io/gh/wardweistra/hipfrog\"\u003e\u003cimg alt=\"codecov\" src=\"https://codecov.io/gh/wardweistra/hipfrog/branch/master/graph/badge.svg\"\u003e\u003c/a\u003e\n\nAn open source [Hipchat](http://hipchat.com/) bot for accessing the [Holacracy](http://www.holacracy.org/) tool [Glassfrog](https://glassfrog.com).\n\n## Installation in your Hipchat room\nFollow https://marketplace.atlassian.com/plugins/hipfrog to install the plugin in your Hipchat room.\n\n## Development\nHipfrog is using [Glassfrog API V3 beta](https://github.com/holacracyone/glassfrog-api/tree/API_v3). Tested on Python 3.5.2.\n\n* Download: `git clone https://github.com/wardweistra/hipfrog.git`  \n* Install: `python3 setup.py install`  \n* Create and upgrade the database with [Flask-Migrate](https://flask-migrate.readthedocs.io/en/latest/). Tested on Postgres.  \n* Test: `python3 tests/glassfrog_tests.py`  \n* Run: `python3 runserver.py --debug`  \n\n## Environment settings\n\nDefault settings are found at [glassfrog/settings/config.py](glassfrog/settings/config.py). Set your own by following the steps in [settings.cfg](settings.cfg).\n\n## Deployment\nHipfrog can be deployed to run your own managed version of it with Apache2.\n\nExample hipfrog.wsgi (at /var/www/hipfrog/ where application at /var/www/hipfrog/hipfrog/ and dependencies installed with virtualenv):\n\n    #!/usr/bin/env python3\n    activate_this = '/var/www/hipfrog/hipfrog/venv/bin/activate_this.py'\n    with open(activate_this) as file_:\n            exec(file_.read(), dict(__file__=activate_this))\n    \n    import sys\n    import logging\n    import os\n    \n    logging.basicConfig(stream=sys.stderr)\n    sys.path.insert(0,\"/var/www/hipfrog/hipfrog/\")\n    \n    os.environ[\"HIPFROG_SETTINGS\"] = \"/var/www/hipfrog/hipfrog/prod_settings.cfg\"\n    \n    from glassfrog import app as application\n\nExample hipfrog.conf (at /etc/apache2/sites-available):\n\n    WSGIPythonHome \"/var/www/hipfrog/hipfrog/venv/bin\"\n    WSGIPythonPath \"/var/www/hipfrog/hipfrog/venv/lib/python3.5/site-packages\"\n    \n    Listen 45277\n    \n    \u003cVirtualHost *:443\u003e\n            ServerName host.wardweistra.nl\n            ServerAdmin w@rdweistra.nl\n            WSGIScriptAlias /hipfrog /var/www/hipfrog/hipfrog.wsgi\n            WSGIDaemonProcess hipfrog-ssl user=ward threads=5\n            \u003cDirectory /var/www/hipfrog/hipfrog/\u003e\n                Order allow,deny\n                Allow from all\n            \u003c/Directory\u003e\n            Alias /static /var/www/hipfrog/hipfrog/glassfrog/static\n            \u003cDirectory /var/www/hipfrog/hipfrog/glassfrog/static/\u003e\n                Order allow,deny\n                Allow from all\n            \u003c/Directory\u003e\n            ErrorLog ${APACHE_LOG_DIR}/error.log\n            LogLevel warn\n            CustomLog ${APACHE_LOG_DIR}/access.log combined\n    SSLCertificateFile /etc/letsencrypt/live/host.wardweistra.nl/fullchain.pem\n    SSLCertificateKeyFile /etc/letsencrypt/live/host.wardweistra.nl/privkey.pem\n    Include /etc/letsencrypt/options-ssl-apache.conf\n    \u003c/VirtualHost\u003e\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwardweistra%2Fhipfrog","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fwardweistra%2Fhipfrog","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fwardweistra%2Fhipfrog/lists"}