{"id":22341824,"url":"https://github.com/code-corps/blog.codecorps.org-site","last_synced_at":"2026-06-20T18:31:56.103Z","repository":{"id":82727464,"uuid":"62579753","full_name":"code-corps/blog.codecorps.org-site","owner":"code-corps","description":"Bedrock file structure and Sage theme for the Code Corps WordPress blog.","archived":false,"fork":false,"pushed_at":"2017-02-09T03:32:41.000Z","size":421,"stargazers_count":1,"open_issues_count":4,"forks_count":3,"subscribers_count":4,"default_branch":"develop","last_synced_at":"2025-07-23T20:56:41.147Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://blog.codecorps.org","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/code-corps.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":".github/CONTRIBUTING.md","funding":null,"license":"LICENSE.md","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":"2016-07-04T17:56:43.000Z","updated_at":"2016-11-12T01:29:03.000Z","dependencies_parsed_at":null,"dependency_job_id":"ff9bf685-36cf-40d7-8bb2-5c702ab4ace7","html_url":"https://github.com/code-corps/blog.codecorps.org-site","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/code-corps/blog.codecorps.org-site","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-corps%2Fblog.codecorps.org-site","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-corps%2Fblog.codecorps.org-site/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-corps%2Fblog.codecorps.org-site/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-corps%2Fblog.codecorps.org-site/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/code-corps","download_url":"https://codeload.github.com/code-corps/blog.codecorps.org-site/tar.gz/refs/heads/develop","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/code-corps%2Fblog.codecorps.org-site/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34581934,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-20T02:00:06.407Z","response_time":98,"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":[],"created_at":"2024-12-04T08:08:19.322Z","updated_at":"2026-06-20T18:31:56.082Z","avatar_url":"https://github.com/code-corps.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Code Corps WordPress (Bedrock + Sage)\n\n![Code Corps Bedrock + Sage Logo](https://d3pgew4wbk2vb1.cloudfront.net/images/github/code-corps-site.png)\n\nThis repository contains the Bedrock file structure and Sage theme for the [Code Corps WordPress blog](https://blog.codecorps.org).\n\n[Bedrock](https://roots.io/bedrock/) is a modern WordPress stack that helps you get started with the best development tools and project structure.\n\n[Sage](https://roots.io/sage/) is the best WordPress starter theme with a modern front-end development workflow.\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](http://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\nUse [Trellis](https://github.com/code-corps/blog.codecorps.org-trellis-public) for additional features:\n\n#### Publicly available:\n* Easy development environments with [Vagrant](http://www.vagrantup.com/)\n\n#### Privately held, for security:\n* Easy server provisioning with [Ansible](http://www.ansible.com/) (Ubuntu 14.04, PHP 5.6 or HHVM, MariaDB)\n* One-command deploys\n\n## Requirements\n\n* PHP \u003e= 5.5\n* Composer - [Install](https://getcomposer.org/doc/00-intro.md#installation-linux-unix-osx)\n\n## Installation\n\nClone this repository along with Trellis into the following directory structure:\n\n```shell\nblog.codecorps.org/      # → Root folder for this project\n├── trellis-public/      # → Your clone of the public Trellis repository\n├── trellis/             # → Your clone of the private Trellis repository (acccess limited; private for security)\n└── site/                # → Your clone of this repository, a Bedrock-based WordPress site\n    └── web/\n        ├── wp/          # → WordPress core (don't touch!)\n        └── app/         # → WordPress content directory (themes, plugins, etc.)\n            └── web/themes/codecorps  # → Code Corps theme directory (where most blog dev work will happen)\n```\n\n1. Create the main project directory (if not already created):\n\n```shell\nmkdir blog.codecorps.org\ncd blog.codecorps.org\n```\n\n2. Clone Trellis:\n\n```shell\ngit clone git@github.com:code-corps/blog.codecorps.org-trellis-public.git trellis-public\n```\n\n3. Clone the site:\n\n```shell\ngit clone git@github.com:code-corps/blog.codecorps.org-site.git site\n```\n\n4. Install the Ansible Galaxy roles:\n\n```shell\ncd trellis-public \u0026\u0026 ansible-galaxy install -r requirements.yml\n```\n\n5. Run locally inside `trellis-public`. [Read those docs](https://github.com/code-corps/blog.codecorps.org-trellis-public#local-development-setup) for more,\n\nWindows user? [Read the Trellis Windows docs](https://roots.io/trellis/docs/windows/) for slightly different installation instructions. Please modify them to match these docs. VirtualBox is known to have poor performance in Windows — use VMware or [see some possible solutions](https://discourse.roots.io/t/virtualbox-performance-in-windows/3932).\n\n## Documentation\n\nBedrock documentation is available at [https://roots.io/bedrock/docs/](https://roots.io/bedrock/docs/).\n\nSage documentation is available at [https://roots.io/sage/docs/](https://roots.io/sage/docs/).\n\n## Contributing\n\nContributions are welcome from everyone. We have [contributing guidelines](https://github.com/blog.codecorps.org-site/blob/master/CONTRIBUTING.md) to help you get started.\n\n## Community\n\nJoin the Code Corps community at [https://codecorps.org/code-corps/code-corps]([https://codecorps.org/code-corps/code-corps])\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode-corps%2Fblog.codecorps.org-site","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fcode-corps%2Fblog.codecorps.org-site","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fcode-corps%2Fblog.codecorps.org-site/lists"}