{"id":18515300,"url":"https://github.com/jonnitto/neos-deployer","last_synced_at":"2025-09-19T05:54:15.421Z","repository":{"id":35020461,"uuid":"198055807","full_name":"jonnitto/neos-deployer","owner":"jonnitto","description":"Unofficial deployer recipes for interacting with Neos CMS.","archived":false,"fork":false,"pushed_at":"2024-06-23T07:50:48.000Z","size":162,"stargazers_count":1,"open_issues_count":0,"forks_count":5,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-03-24T01:01:48.472Z","etag":null,"topics":["deployer","neoscms"],"latest_commit_sha":null,"homepage":null,"language":"PHP","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/jonnitto.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":"2019-07-21T12:51:30.000Z","updated_at":"2024-06-23T07:48:07.000Z","dependencies_parsed_at":"2024-11-06T16:04:03.226Z","dependency_job_id":null,"html_url":"https://github.com/jonnitto/neos-deployer","commit_stats":{"total_commits":110,"total_committers":2,"mean_commits":55.0,"dds":"0.018181818181818188","last_synced_commit":"3d5f25a10144df2984bf59c10a517aa026a2eaf7"},"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonnitto%2Fneos-deployer","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonnitto%2Fneos-deployer/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonnitto%2Fneos-deployer/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jonnitto%2Fneos-deployer/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jonnitto","download_url":"https://codeload.github.com/jonnitto/neos-deployer/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247726366,"owners_count":20985880,"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":["deployer","neoscms"],"created_at":"2024-11-06T15:47:17.077Z","updated_at":"2025-09-19T05:54:10.358Z","avatar_url":"https://github.com/jonnitto.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Deployer tasks for Neos CMS\n\nThese deployer scripts are built on top of [Deployer]. Most of the tasks are provided by this library already; this package adds just some optimization for the install process as well as the needed actions for deploying a project. There are also some helper tasks available, who should make your life as a developer a bit easier. Please run the deployer scripts only in your development environment, as Deployer connects automatically to the needed live server.\n\nYou can look at the [examples] folder to look how to set up a deployment.\nThe files should be saved on the root of you project. In the `deploy.yaml` file you will\nfind explanations for all the available settings.\n\n## Installation\n\nEnter this on the root of your project:\n\n```bash\ncomposer require --dev jonnitto/neos-deployer\n```\n\n## Hoster\n\nCurrently, there are settings for these hosters:\n\n- [proServer from punkt.de]\n- [Uberspace]\n- [Mittwald]\n\n## Slack webhook\n\nTo get a notification in Slack, you have to set `slack_webhook`.  \n[You can register it here][slack webhook]\n\n## Commands for every hoster\n\nRun these tasks with `dep COMMAND`. If you want to list all commands, enter `dep` or `dep list`\n\n**Most important commands:**\n\n| Command                    | Description                                                  | Uberspace 7 | proServer |\n| -------------------------- | ------------------------------------------------------------ | :---------: | :-------: |\n| `deploy`                   | Deploy your project                                          |      ✓      |     ✓     |\n| `frontend`                 | Build frontend files and push them to git                    |      ✓      |     ✓     |\n| `install`                  | Initialize installation                                      |      ✓      |     ✓     |\n| `install:import`           | Import your local database and persistent resources          |      ✓      |     ✓     |\n| `install:symlink`          | Set the symbolic link for this site                          |      ✓      |     ✓     |\n| `rollback`                 | Rollback to previous release                                 |      ✓      |     ✓     |\n| `ssh`                      | Connect to host through ssh                                  |      ✓      |     ✓     |\n| `ssh:key`                  | Create and/or read the deployment key                        |      ✓      |     ✓     |\n| `deploy:publish_resources` | Publish resources                                            |      ✓      |     ✓     |\n| `deploy:run_migrations`    | Apply database migrations                                    |      ✓      |     ✓     |\n| `deploy:tag`               | Create release tag on git                                    |      ✓      |     ✓     |\n| `deploy:unlock`            | Unlock deploy                                                |      ✓      |     ✓     |\n| `config:current`           | Show current paths                                           |      ✓      |     ✓     |\n| `config:dump`              | Print host configuration                                     |      ✓      |     ✓     |\n| `config:hosts`             | Print all hosts                                              |      ✓      |     ✓     |\n| `node:migrate`             | List and run node migrations                                 |      ✓      |     ✓     |\n| `node:repair`              | Repair inconsistent nodes in the content repository          |      ✓      |     ✓     |\n| `site:import`              | Import the site from the a package with a xml file           |      ✓      |     ✓     |\n| `user:create_admin`        | Create a new administrator                                   |      ✓      |     ✓     |\n| `edit:cronjob`             | Edit the cronjobs                                            |      ✓      |     ✓     |\n| `edit:settings`            | Edit the Neos Settings.yaml file                             |      ✓      |     ✓     |\n| `domain:add`               | Add a domain to uberspace                                    |      ✓      |           |\n| `domain:remove`            | Remove a domain from uberspace                               |      ✓      |           |\n| `domain:list`              | List all domains and sub-domains                             |      ✓      |           |\n| `domain:force`             | Configure the server to force a specific domain (Nginx only) |             |     ✓     |\n| `domain:dns`               | Output the IP addresses for the host                         |             |     ✓     |\n| `domain:ssl`               | Add Let's Encrypt SSL certificate                            |             |     ✓     |\n| `domain:ssl:request`       | Requested the SSl certificate                                |             |     ✓     |\n| `domain:ssl:remove`        | Remove domain(s) from Let's Encrypt SSL certificate list     |             |     ✓     |\n| `install:sendmail`         | Activate sendmail on the server                              |             |     ✓     |\n| `install:redis`            | Activate redis on the server                                 |             |     ✓     |\n| `install:elasticsearch`    | Activate Elasticsearch on the server                         |             |     ✓     |\n| `install:set_server`       | Set server to Apache or Nginx, based on `deploy.yaml`        |             |     ✓     |\n| `install:update`           | Update from an older version of jonnitto/neos-deployer       |      ✓      |     ✓     |\n| `restart:server`           | Restart server (Apache or Nginx)                             |             |     ✓     |\n| `restart:php`              | Restart PHP                                                  |      ✓      |     ✓     |\n| `tunnel`                   | Create a tunnel connection via localhost for a SFTP or MySQL |             |     ✓     |\n| `php:version`              | Set the PHP version on the server                            |      ✓      |           |\n\n[deployer]: https://deployer.org\n[examples]: examples\n[proserver from punkt.de]: documentation/proServer.md\n[uberspace]: documentation/Uberspace.md\n[Mittwald]: documentation/Mittwald.md\n\n[slack webhook]: https://slack.com/oauth/authorize?\u0026client_id=113734341365.225973502034\u0026scope=incoming-webhook\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonnitto%2Fneos-deployer","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjonnitto%2Fneos-deployer","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjonnitto%2Fneos-deployer/lists"}