{"id":27374355,"url":"https://github.com/ajdinmore/wordpress-boilerplate","last_synced_at":"2026-05-19T14:40:29.324Z","repository":{"id":56943055,"uuid":"405519633","full_name":"ajdinmore/wordpress-boilerplate","owner":"ajdinmore","description":"Basic default boilerplate with local Docker config for WordPress development.","archived":false,"fork":false,"pushed_at":"2023-05-14T18:16:54.000Z","size":28,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-05-13T19:18:02.517Z","etag":null,"topics":["boilerplate","wordpress"],"latest_commit_sha":null,"homepage":"https://packagist.org/packages/ajdinmore/wordpress-boilerplate","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/ajdinmore.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":"2021-09-12T01:31:48.000Z","updated_at":"2021-11-10T16:34:48.000Z","dependencies_parsed_at":"2025-04-13T11:56:17.603Z","dependency_job_id":"a30d5d79-0376-4353-ac71-1c3f41a0d56b","html_url":"https://github.com/ajdinmore/wordpress-boilerplate","commit_stats":null,"previous_names":[],"tags_count":11,"template":true,"template_full_name":null,"purl":"pkg:github/ajdinmore/wordpress-boilerplate","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajdinmore%2Fwordpress-boilerplate","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajdinmore%2Fwordpress-boilerplate/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajdinmore%2Fwordpress-boilerplate/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajdinmore%2Fwordpress-boilerplate/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ajdinmore","download_url":"https://codeload.github.com/ajdinmore/wordpress-boilerplate/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ajdinmore%2Fwordpress-boilerplate/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":271469227,"owners_count":24765124,"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-21T02:00:08.990Z","response_time":74,"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":["boilerplate","wordpress"],"created_at":"2025-04-13T11:56:10.119Z","updated_at":"2026-05-19T14:40:29.263Z","avatar_url":"https://github.com/ajdinmore.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Andy's WordPress Boilerplate\n\nDrop-in support via Composer hasn't been tested because\n[none exist in Packagist](https://packagist.org/explore/?type=type:wordpress-dropin)\nthat have the correct config, as described in the\n[pull request](https://github.com/composer/installers/pull/265)\n\nIncluded Docker setup is intended for local dev use only; the image is thrown together, and I've no idea how secure it\nis.\n\n## Setup Examples\n\nReady for lazy copy \u0026 paste.\n\n### WooCommerce store, local server (DB defined in environment vars)\n\n```shell\ncomposer create-project ajdinmore/wordpress-boilerplate wc-dev-store \u0026\u0026\ncd wc-dev-store \u0026\u0026\ncp wp-config.local wp-config.php \u0026\u0026\ncomposer require wpackagist-plugin/woocommerce wpackagist-theme/storefront \u0026\u0026\nvendor/bin/wp core install --skip-email \\\n  --url=localhost \\\n  --title='My Dev Store' \\\n  --admin_user=admin \\\n  --admin_password=admin \\\n  --admin_email=admin@example.com \u0026\u0026\nvendor/bin/wp theme activate storefront \u0026\u0026\nvendor/bin/wp plugin activate woocommerce\n```\n\n### Basic dev site, Docker only\n\n```shell\ndocker run --rm -it \\\n  --user $(id -u):$(id -g) \\\n  --volume $(pwd):/app \\\n  ajdinmore/php:8.1-dev \\\n  composer create-project --no-install ajdinmore/wordpress-boilerplate wp-dev-site \u0026\u0026\ncd wp-dev-site \u0026\u0026\ncp wp-config.local wp-config.php \u0026\u0026\ncp docker-compose.override.yaml.dist docker-compose.override.yaml \u0026\u0026\ndocker-compose up -d \u0026\u0026\ndocker-compose exec -u $(id -u):$(id -g) php bash -c \\\n  'composer require wpackagist-theme/twentytwentytwo \u0026\u0026\n  printf \"Waiting for DB...\" \u0026\u0026\n  until mysql -h db -u wordpress -pwordpress wordpress -e \"select 1\" \u003e /dev/null 2\u003e\u00261\n  do sleep 1; printf \".\"; done \u0026\u0026 echo \u0026\u0026\n  vendor/bin/wp core install --skip-email \\\n    --url=localhost \\\n    --title=\"My Dev Site\" \\\n    --admin_user=admin \\\n    --admin_password=admin \\\n    --admin_email=admin@example.com' \u0026\u0026\ndocker-compose stop \u0026\u0026 docker-compose up\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajdinmore%2Fwordpress-boilerplate","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fajdinmore%2Fwordpress-boilerplate","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fajdinmore%2Fwordpress-boilerplate/lists"}