{"id":44697904,"url":"https://github.com/syntro-opensource/ssdev","last_synced_at":"2026-02-15T08:35:25.017Z","repository":{"id":36960663,"uuid":"295964700","full_name":"syntro-opensource/ssdev","owner":"syntro-opensource","description":"docker-based devenv manager for silverstripe projects","archived":false,"fork":false,"pushed_at":"2025-02-12T08:10:49.000Z","size":917,"stargazers_count":5,"open_issues_count":11,"forks_count":1,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-04-08T19:02:17.162Z","etag":null,"topics":["developer-tools","development","docker","silverstripe"],"latest_commit_sha":null,"homepage":"","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"bsd-3-clause","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/syntro-opensource.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":"CONTRIBUTING.md","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":"2020-09-16T08:01:39.000Z","updated_at":"2025-01-27T11:09:36.000Z","dependencies_parsed_at":"2024-08-05T17:23:12.040Z","dependency_job_id":"aba2ea93-5eb2-4fac-9b9b-22dea1af0743","html_url":"https://github.com/syntro-opensource/ssdev","commit_stats":null,"previous_names":[],"tags_count":18,"template":false,"template_full_name":null,"purl":"pkg:github/syntro-opensource/ssdev","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntro-opensource%2Fssdev","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntro-opensource%2Fssdev/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntro-opensource%2Fssdev/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntro-opensource%2Fssdev/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/syntro-opensource","download_url":"https://codeload.github.com/syntro-opensource/ssdev/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/syntro-opensource%2Fssdev/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29473718,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-15T06:58:05.414Z","status":"ssl_error","status_checked_at":"2026-02-15T06:58:05.085Z","response_time":118,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["developer-tools","development","docker","silverstripe"],"created_at":"2026-02-15T08:35:24.095Z","updated_at":"2026-02-15T08:35:25.002Z","avatar_url":"https://github.com/syntro-opensource.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# ssdev - A Simple yet Powerful Silverstripe Development Environment Manager 🚀\n\n[![npm](https://img.shields.io/npm/v/ssdev)](https://www.npmjs.com/package/ssdev)\n[![npm](https://img.shields.io/npm/dt/ssdev)](https://www.npmjs.com/package/ssdev)\n![NPM](https://img.shields.io/npm/l/ssdev)\n[![Tests](https://github.com/syntro-opensource/ssdev/workflows/Tests/badge.svg)](https://github.com/syntro-opensource/ssdev/actions?query=workflow%3ATests)\n\nssdev makes Silverstripe development easy. Stop worrying about your LAMP, MAMP\nor WAMP stack and start developing awesome websites and applications!\n\n## 🧩 Prerequisites\nssdev works on most systems. In order for it to work properly, you need to install some prerequisites. Please follow the instructions for your OS:\n\n* [macOS](docs/os/macos.md)\n* [Windows](docs/os/windows.md)\n* [Linux](docs/os/linux.md)\n\n## 📦 Installation\nYou can run ssdev without installing it using npx:\n```\nnpx ssdev --help\n```\nThis works great for checking out ssdev or for issuing some commands, but\nfor productive development work, you should install it globally using:\n\n```\nnpm install -g ssdev\n```\nafter which you can simply use it by typing\n```\nssdev --help\n```\n\n## 🚀 Usage\n\nssdev assumes Silverstripe projects to be inside a directory containing a `composer.json`\nfile and a file structure [common for Silverstripe](https://docs.silverstripe.org/en/4/getting_started/directory_structure/).\nAll commands concerning that project **must** be executed in the project root.\n\nIf you want to experiment on a new project, have a look over at [`syntro/ssto`](https://github.com/syntro-opensource/silverstripe-ssto)\nto get set up with a Silverstripe starter project.\n\nIn a directory containing a project, simply run\n```\nssdev up\n```\nto bring up a server and database environment. To shut down the server after you\nare finished, run\n```\nssdev down\n```\nThere is more to ssdev, but we go over all of it in the [docs](#-docs).\n\n## 📖 Docs\nssdev is a powerful tool and can be customized in various ways. Read here how\nyou can achieve any setup, mimicking a production environment as closely as possible.\n\n\n#### Config Options\nYou can set all config options (`ssdev --help`) in a `package.json` file under the\n`ssdev` key. This allows you to set per-project settings that actually transfer\nto other developers. An example would be if you want to use a different PHP version:\n```json\n{\n  \"ssdev\": {\n    \"image-host\": \"syntrocontainer/silverstripe-dev:8.0-apache-buster\"\n  }\n}\n```\n\n#### Configure the Host Container\n→ see [📚 in-depth docs about how to work with diffrent hosting setups](docs/hostcontainer.md).\n\n#### Install Dependencies\n→ see [📚 in-depth docs about composer dependencies](docs/composer.md).\n\n#### Executing Tests (PHPUnit, PHPStan, ...)\n→ see [📚 in-depth docs about test execution](docs/testing.md).\n\n#### Custom Services\n→ see [📚 in-depth docs about custom service container](docs/services.md).\n\n\n## ➕ More Infos\nCheck out the following for more informations:\n* [Changelog](CHANGELOG.md)\n* [Contributing guide](CONTRIBUTING.md)\n* [License](LICENSE.md)\n* [`syntro/ssto`](https://github.com/syntro-opensource/silverstripe-ssto)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyntro-opensource%2Fssdev","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsyntro-opensource%2Fssdev","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsyntro-opensource%2Fssdev/lists"}