{"id":16314965,"url":"https://github.com/cebe/humhub-deployment","last_synced_at":"2025-08-01T00:32:21.435Z","repository":{"id":66289042,"uuid":"124548620","full_name":"cebe/humhub-deployment","owner":"cebe","description":"Reliable deployments for Humhub. Install Humhub with modules, themes and custom configuration.","archived":false,"fork":false,"pushed_at":"2018-03-21T13:48:51.000Z","size":20,"stargazers_count":10,"open_issues_count":0,"forks_count":5,"subscribers_count":5,"default_branch":"master","last_synced_at":"2025-04-28T12:18:44.422Z","etag":null,"topics":["deployment","humhub"],"latest_commit_sha":null,"homepage":null,"language":"Makefile","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/cebe.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,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2018-03-09T14:09:48.000Z","updated_at":"2023-05-19T13:26:01.000Z","dependencies_parsed_at":"2023-05-30T17:16:20.673Z","dependency_job_id":null,"html_url":"https://github.com/cebe/humhub-deployment","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/cebe/humhub-deployment","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cebe%2Fhumhub-deployment","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cebe%2Fhumhub-deployment/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cebe%2Fhumhub-deployment/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cebe%2Fhumhub-deployment/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/cebe","download_url":"https://codeload.github.com/cebe/humhub-deployment/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/cebe%2Fhumhub-deployment/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268146930,"owners_count":24203278,"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-07-31T02:00:08.723Z","response_time":66,"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":["deployment","humhub"],"created_at":"2024-10-10T21:55:43.407Z","updated_at":"2025-08-01T00:32:21.334Z","avatar_url":"https://github.com/cebe.png","language":"Makefile","funding_links":[],"categories":[],"sub_categories":[],"readme":"Humhub Deployment\n=================\n\nThis repostiroy provides reliable deployments for Humhub.\nIt allows you to install Humhub with a defined set of modules, themes and custom configuration.\n\nIt is using git submodules to handle dependencies and a `Makefile` to\nglue everything together on deployment.\n\nRequirements\n------------\n\n- [Composer](https://getcomposer.org/doc/00-intro.md#globally) installed and availble as `composer` command in your PATH.\n- [GNU Make](https://www.gnu.org/software/make/)\n- HumHub 1.3-dev or higher\n\nStarting a new project\n----------------------\n\n```bash\n# create empty git repo in current folder\ngit init .\n\n# add humhub and check out a stable version\ngit submodule add https://github.com/humhub/humhub humhub\ngit -C ./humhub checkout v1.3-dev\ngit add humhub\n\n# add this repo\ngit submodule add https://github.com/cebe/humhub-deployment tools\necho \"include tools/Makefile.inc\" \u003e Makefile\ngit add Makefile\n\n# composer.json is managed by the Makefile, so ignore it in git\necho \"/composer.json\" \u003e .gitignore\ngit add .gitignore\n```\n\ncommit your changes and you are ready to go.\n\nDeployment\n----------\n\nRun `make deploy` in dev env or `make deploy ENV=prod` in production.\n\nFor development, `make start` and `make stop` provide shortcuts for starting\nthe PHP builtin webserver. Use `make start PORT=1234` to specify a different port to use.\n\nCustomization\n-------------\n\n### Adding Modules\n\nAdd modules by putting them into the `modules` folder. This will\nbe synced with humhub on deployment.\n\nYou can develop custom modules directly in your repo, or add other modules as\ngit submodules. For example, adding the custom-pages module:\n\n```bash\ngit submodule add https://github.com/humhub/humhub-modules-custom-pages modules/custom_pages\n```\n\nand optionally check out a specific version.\n\nModule may provide a `composer.json` file to specify additional dependencies to be installed.\n\n### Adding Themes\n\nAdd themes by putting them into the `themes` folder. This will\nbe synced with humhub on deployment.\n\nYou can develop custom themes directly in your repo, or add other themes as\ngit submodules.\n\n### Changing Humhub Config\n\nTBD\n\n\n### Installing Additional composer packages\n\nFor allowing to add additional composer packages without touching the original composer.json file\nprovided by humhub, we use the [wikimedia/composer-merge-plugin](https://github.com/wikimedia/composer-merge-plugin).\n\nYou should ignore `composer.json` in `.gitignore` as this file is manged by the `Makefile`.\nIf you want to add custom packages, create a `composer.local.json` file and specify all\nrequirements and autoloading definitions there.\nThe `composer.lock` file should be committed to the repository as it tracks the exact versions\nof installed packages and allows reliable deplyoments.\n\nFor updating packages, run `composer update` as you would normally do.\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcebe%2Fhumhub-deployment","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcebe%2Fhumhub-deployment","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcebe%2Fhumhub-deployment/lists"}