{"id":20737781,"url":"https://github.com/dotsunited/wordpress-boilerplate","last_synced_at":"2025-04-24T01:43:05.536Z","repository":{"id":41755686,"uuid":"14796243","full_name":"dotsunited/wordpress-boilerplate","owner":"dotsunited","description":"A barebones, clean and minimalist WordPress Boilerplate.","archived":false,"fork":false,"pushed_at":"2025-04-22T09:46:19.000Z","size":9150,"stargazers_count":16,"open_issues_count":0,"forks_count":4,"subscribers_count":7,"default_branch":"main","last_synced_at":"2025-04-22T11:02:50.675Z","etag":null,"topics":["wordpress"],"latest_commit_sha":null,"homepage":"http://wordpress-boilerplate.dotsunited.de","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/dotsunited.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,"zenodo":null}},"created_at":"2013-11-29T08:36:46.000Z","updated_at":"2025-04-22T09:46:23.000Z","dependencies_parsed_at":"2023-11-13T09:25:54.076Z","dependency_job_id":"539ac6d6-dcfa-4f16-a90e-e3e2e5561408","html_url":"https://github.com/dotsunited/wordpress-boilerplate","commit_stats":{"total_commits":467,"total_committers":11,"mean_commits":42.45454545454545,"dds":"0.39400428265524623","last_synced_commit":"9e195cfa717141d39b2c36509cee9fd966c4fcc9"},"previous_names":[],"tags_count":94,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotsunited%2Fwordpress-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotsunited%2Fwordpress-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotsunited%2Fwordpress-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dotsunited%2Fwordpress-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dotsunited","download_url":"https://codeload.github.com/dotsunited/wordpress-boilerplate/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250228167,"owners_count":21395956,"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":["wordpress"],"created_at":"2024-11-17T06:15:37.797Z","updated_at":"2025-04-24T01:43:05.520Z","avatar_url":"https://github.com/dotsunited.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Dots United WordPress Boilerplate\n\nA barebones, clean and minimalist WordPress Boilerplate, developed at\n[Dots United](https://dotsunited.de/) as a foundation for modern, maintainable\nand lightning fast WordPress based projects.\n\nGutenberg ready.\n\nA Demo is available [here](http://wordpress-boilerplate.dotsunited.de/).\n\n## Features\n\n- [Maximum possible PageSpeed Insights score](https://developers.google.com/speed/pagespeed/insights/?url=http%3A%2F%2Fwordpress-boilerplate.dotsunited.de%2F\u0026tab=mobile)\n- [Bun](https://bun.sh) for fast all-in-one JavaScript runtime\n- [Vite](https://github.com/vitejs/vite) for asset bundling\n- [Composer](https://github.com/composer/composer) for PHP dependency management\n- [Tailwind CSS](https://github.com/tailwindcss/tailwindcss) for utility-first CSS\n- Clean, maintainable and scalable project structure\n- No bloat\n\n## Setup\n\nCreate new project with:\n\n```bash\ncomposer create-project dotsunited/wordpress-boilerplate my-project\n```\n\n## Docker\n\nAdjust the `docker-compose.yml` to your needs using a `docker-compose.override.yml` file (\u003chttps://docs.docker.com/compose/extends/\u003e).\n\nYou can add a database dump with the filename `dump.sql.gz` or `dump.sql` which will be imported on the first run. A new user with the following credentials will be automatically added:\n\n```bash\nUsername: `localAdmin`\nPassword: `localPassword`\n```\n\n\u003e ⚠️ Remember to remove or change the credentials in a production environment!\n\nMultisite subfolders can be be configured by setting the `WORDPRESS_MULTISITE_PATHS` environment variable to e.g. `2=blog2,3=blog3`, resulting in the following URLs:\n\n- \u003chttp://localhost:8080/\u003e\n- \u003chttp://localhost:8080/blog2/\u003e\n- \u003chttp://localhost:8080/blog3/\u003e\n\nIf nothing is set, the ID of the corresponding blog will be used as a path, resulting in the following URLs:\n\n- \u003chttp://localhost:8080/\u003e\n- \u003chttp://localhost:8080/2/\u003e\n- \u003chttp://localhost:8080/3/\u003e\n\nStart the Docker containers with\n\n```bash\ndocker compose up -d\n```\n\n## Plugins\n\n\u003e ℹ️ Automatic updates for plugins \u0026 themes are disabled by default. You can enable them by removing or commenting the corresponding module in `wp-content/mu-plugins/wordpress-boilerplate/wordpress-boilerplate.php`.\n\nIf you uncommented sentry lines in `docker-compose.yml` install [WP Sentry](https://wordpress.org/plugins/wp-sentry-integration/)\n\nBe careful when using plugins which depend on jQuery.\n\nGravity Forms for example will enqueue jquery once a form is embedded into a\npost or page.\n\nIn this case, you might include the form via an iFrame. You can use the\n[gravity-forms-iframe](https://github.com/bradyvercher/gravity-forms-iframe)\nplugin for easier integration.\n\n## Webfonts\n\nIt is recommended to use local webfonts and not from external CDN's like\nGoogle Fonts.\n\nYou can use [google-webfonts-helper](https://gwfh.mranftl.com/fonts)\nto download webfonts from Google Fonts.\n\n## License\n\nCopyright (c) 2015-2024 Dots United GmbH.\nReleased under the [MIT](LICENSE) license.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotsunited%2Fwordpress-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdotsunited%2Fwordpress-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdotsunited%2Fwordpress-boilerplate/lists"}