{"id":19030979,"url":"https://github.com/hackclub/huginn-docker","last_synced_at":"2025-08-31T01:33:48.262Z","repository":{"id":22501041,"uuid":"25840619","full_name":"hackclub/huginn-docker","owner":"hackclub","description":"Production-ready Huginn deployment with Docker.","archived":false,"fork":false,"pushed_at":"2019-01-13T08:04:28.000Z","size":6,"stargazers_count":33,"open_issues_count":0,"forks_count":9,"subscribers_count":4,"default_branch":"master","last_synced_at":"2025-08-30T04:54:39.622Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"Dockerfile","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/hackclub.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}},"created_at":"2014-10-27T21:43:44.000Z","updated_at":"2025-01-05T17:46:22.000Z","dependencies_parsed_at":"2022-07-23T18:46:24.047Z","dependency_job_id":null,"html_url":"https://github.com/hackclub/huginn-docker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/hackclub/huginn-docker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Fhuginn-docker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Fhuginn-docker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Fhuginn-docker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Fhuginn-docker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/hackclub","download_url":"https://codeload.github.com/hackclub/huginn-docker/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/hackclub%2Fhuginn-docker/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":272929990,"owners_count":25017057,"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","status":"online","status_checked_at":"2025-08-30T02:00:09.474Z","response_time":77,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":[],"created_at":"2024-11-08T21:20:45.738Z","updated_at":"2025-08-31T01:33:48.241Z","avatar_url":"https://github.com/hackclub.png","language":"Dockerfile","funding_links":[],"categories":[],"sub_categories":[],"readme":"# huginn-docker\n\nThis project contains a production-ready\n[Huginn](https://github.com/cantino/huginn) deployment with Docker.\n\nThe following images are built from this project:\n\n* `hackedu/huginn`\n* `hackedu/huginn-web`\n* `hackedu/huginn-jobs`\n\n## Usage\n\nRun database migrations (the host DB must by MySQL compatible):\n\n    docker run --rm \\\n      -e \"RAILS_ENV=production\" \\\n      -e \"DATABASE_NAME=TODO\" \\\n      -e \"DATABASE_USERNAME=TODO\" \\\n      -e \"DATABASE_PASSWORD=TODO\" \\\n      -e \"DATABASE_HOST=todo.example.com\" \\\n      -e \"DATABASE_PORT=TODO\" \\\n      -e \"DATABASE_ENCODING=utf8mb4\" \\\n      -e \"INVITATION_CODE=my-invitation-code\" \\\n      hackedu/huginn rake db:migrate\n\nSeed the database (optional):\n\n    docker run --rm \\\n      -e \"RAILS_ENV=production\" \\\n      -e \"DATABASE_NAME=TODO\" \\\n      -e \"DATABASE_USERNAME=TODO\" \\\n      -e \"DATABASE_PASSWORD=TODO\" \\\n      -e \"DATABASE_HOST=todo.example.com\" \\\n      -e \"DATABASE_PORT=TODO\" \\\n      -e \"DATABASE_ENCODING=utf8mb4\" \\\n      -e \"SEED_USERNAME=TODO\" \\\n      -e \"SEED_PASSWORD=TODO\" \\\n      hackedu/huginn rake db:seed\n\nLaunch a web instance:\n\n    docker run -d \\\n      -e \"RAILS_ENV=production\" \\\n      -e \"APP_SECRET_TOKEN=TODO (generate with rake secret)\" \\\n      -e \"DATABASE_NAME=TODO\" \\\n      -e \"DATABASE_USERNAME=TODO\" \\\n      -e \"DATABASE_PASSWORD=TODO\" \\\n      -e \"DATABASE_HOST=TODO\" \\\n      -e \"DATABASE_PORT=TODO\" \\\n      -e \"DATABASE_ENCODING=utf8mb4\" \\\n      -p 3000:3000 \\\n      hackedu/huginn-web\n\nLaunch a job worker instance:\n\n    docker run -d \\\n      -e \"RAILS_ENV=production\" \\\n      -e \"APP_SECRET_TOKEN=TODO (generate with rake secret)\" \\\n      -e \"DATABASE_NAME=TODO\" \\\n      -e \"DATABASE_USERNAME=TODO\" \\\n      -e \"DATABASE_PASSWORD=TODO\" \\\n      -e \"DATABASE_HOST=TODO\" \\\n      -e \"DATABASE_PORT=TODO\" \\\n      -e \"DATABASE_ENCODING=utf8mb4\" \\\n      -p 3000:3000 \\\n      hackedu/huginn-jobs\n\nYou can override any environment variables when launching Huginn containers.\nFor a list, see the\n[.env.example](https://github.com/cantino/huginn/blob/master/.env.example)\nfile. Do note that there are additional required variables in the list, you'll\nwant to add them when deploying.\n\n### Building\n\nBuild all images:\n\n    $ make build\n\nPush all images:\n\n    $ make push\n\nThe `push` target depends on the `build` target, so if you want to build and\npush, you only need to run `make push`.\n\nNote: If you want to change the name of the images, you need to change both the\nMakefile and the web and jobs Dockerfiles.\n\n## License\n\nThe MIT License (MIT)\n\nCopyright (c) 2019 Hack Club\n\nPermission is hereby granted, free of charge, to any person obtaining a copy of\nthis software and associated documentation files (the \"Software\"), to deal in\nthe Software without restriction, including without limitation the rights to\nuse, copy, modify, merge, publish, distribute, sublicense, and/or sell copies\nof the Software, and to permit persons to whom the Software is furnished to do\nso, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackclub%2Fhuginn-docker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fhackclub%2Fhuginn-docker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fhackclub%2Fhuginn-docker/lists"}