{"id":25731421,"url":"https://github.com/thehashton/progressive-wordpress","last_synced_at":"2026-04-04T22:33:45.642Z","repository":{"id":39255237,"uuid":"235388596","full_name":"thehashton/Progressive-Wordpress","owner":"thehashton","description":"Making a PWA from a headless Wordpress with WPGraphQL, Bedrock, React and Apollo","archived":false,"fork":false,"pushed_at":"2023-01-05T05:27:20.000Z","size":8635,"stargazers_count":1,"open_issues_count":22,"forks_count":0,"subscribers_count":2,"default_branch":"master","last_synced_at":"2025-06-05T04:44:52.705Z","etag":null,"topics":["apollo","graphql","headless","pwa","react","wordpress","wpgraphql"],"latest_commit_sha":null,"homepage":"","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/thehashton.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-01-21T16:30:02.000Z","updated_at":"2022-11-22T10:07:57.000Z","dependencies_parsed_at":"2023-02-03T13:16:19.171Z","dependency_job_id":null,"html_url":"https://github.com/thehashton/Progressive-Wordpress","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/thehashton/Progressive-Wordpress","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thehashton%2FProgressive-Wordpress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thehashton%2FProgressive-Wordpress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thehashton%2FProgressive-Wordpress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thehashton%2FProgressive-Wordpress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/thehashton","download_url":"https://codeload.github.com/thehashton/Progressive-Wordpress/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/thehashton%2FProgressive-Wordpress/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31416776,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-04T20:09:54.854Z","status":"ssl_error","status_checked_at":"2026-04-04T20:09:44.350Z","response_time":60,"last_error":"SSL_read: 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":["apollo","graphql","headless","pwa","react","wordpress","wpgraphql"],"created_at":"2025-02-26T02:46:08.233Z","updated_at":"2026-04-04T22:33:45.616Z","avatar_url":"https://github.com/thehashton.png","language":"PHP","funding_links":["https://www.patreon.com/rootsdev"],"categories":[],"sub_categories":[],"readme":"# [Bedrock](https://roots.io/bedrock/)\n\n[![Packagist](https://img.shields.io/packagist/v/roots/bedrock.svg?style=flat-square)](https://packagist.org/packages/roots/bedrock)\n[![Build Status](https://img.shields.io/circleci/build/gh/roots/bedrock?style=flat-square)](https://circleci.com/gh/roots/bedrock)\n[![Follow Roots](https://img.shields.io/twitter/follow/rootswp.svg?style=flat-square\u0026color=1da1f2)](https://twitter.com/rootswp)\n\nBedrock is a modern WordPress stack that helps you get started with the best development tools and project structure.\n\nMuch of the philosophy behind Bedrock is inspired by the [Twelve-Factor App](http://12factor.net/) methodology including the [WordPress specific version](https://roots.io/twelve-factor-wordpress/).\n\n## Features\n\n* Better folder structure\n* Dependency management with [Composer](https://getcomposer.org)\n* Easy WordPress configuration with environment specific files\n* Environment variables with [Dotenv](https://github.com/vlucas/phpdotenv)\n* Autoloader for mu-plugins (use regular plugins as mu-plugins)\n* Enhanced security (separated web root and secure passwords with [wp-password-bcrypt](https://github.com/roots/wp-password-bcrypt))\n\n## Requirements\n\n* PHP \u003e= 7.1\n* Composer - [Install](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx)\n\n## Installation\n\n1. Create a new project:\n    ```sh\n    $ composer create-project roots/bedrock\n    ```\n2. Update environment variables in the `.env` file. Wrap values that may contain non-alphanumeric characters with quotes, or they may be incorrectly parsed.\n  * Database variables\n    * `DB_NAME` - Database name\n    * `DB_USER` - Database user\n    * `DB_PASSWORD` - Database password\n    * `DB_HOST` - Database host\n    * Optionally, you can define `DATABASE_URL` for using a DSN instead of using the variables above (e.g. `mysql://user:password@127.0.0.1:3306/db_name`)\n  * `WP_ENV` - Set to environment (`development`, `staging`, `production`)\n  * `WP_HOME` - Full URL to WordPress home (https://example.com)\n  * `WP_SITEURL` - Full URL to WordPress including subdirectory (https://example.com/wp)\n  * `AUTH_KEY`, `SECURE_AUTH_KEY`, `LOGGED_IN_KEY`, `NONCE_KEY`, `AUTH_SALT`, `SECURE_AUTH_SALT`, `LOGGED_IN_SALT`, `NONCE_SALT`\n    * Generate with [wp-cli-dotenv-command](https://github.com/aaemnnosttv/wp-cli-dotenv-command)\n    * Generate with [our WordPress salts generator](https://roots.io/salts.html)\n3. Add theme(s) in `web/app/themes/` as you would for a normal WordPress site\n4. Set the document root on your webserver to Bedrock's `web` folder: `/path/to/site/web/`\n5. Access WordPress admin at `https://example.com/wp/wp-admin/`\n\n## Documentation\n\nBedrock documentation is available at [https://roots.io/bedrock/docs/](https://roots.io/bedrock/docs/).\n\n## Contributing\n\nContributions are welcome from everyone. We have [contributing guidelines](https://github.com/roots/guidelines/blob/master/CONTRIBUTING.md) to help you get started.\n\n## Bedrock sponsors\n\nHelp support our open-source development efforts by [becoming a patron](https://www.patreon.com/rootsdev).\n\n\u003ca href=\"https://kinsta.com/?kaid=OFDHAJIXUDIV\"\u003e\u003cimg src=\"https://cdn.roots.io/app/uploads/kinsta.svg\" alt=\"Kinsta\" width=\"200\" height=\"150\"\u003e\u003c/a\u003e \u003ca href=\"https://k-m.com/\"\u003e\u003cimg src=\"https://cdn.roots.io/app/uploads/km-digital.svg\" alt=\"KM Digital\" width=\"200\" height=\"150\"\u003e\u003c/a\u003e \u003ca href=\"https://scaledynamix.com/\"\u003e\u003cimg src=\"https://cdn.roots.io/app/uploads/scale-dynamix.svg\" alt=\"Scale Dynamix\" width=\"200\" height=\"150\"\u003e\u003c/a\u003e\n\n## Community\n\nKeep track of development and community news.\n\n* Participate on the [Roots Discourse](https://discourse.roots.io/)\n* Follow [@rootswp on Twitter](https://twitter.com/rootswp)\n* Read and subscribe to the [Roots Blog](https://roots.io/blog/)\n* Subscribe to the [Roots Newsletter](https://roots.io/subscribe/)\n* Listen to the [Roots Radio podcast](https://roots.io/podcast/)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthehashton%2Fprogressive-wordpress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fthehashton%2Fprogressive-wordpress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fthehashton%2Fprogressive-wordpress/lists"}