{"id":16181743,"url":"https://github.com/ericclemmons/wordpress-skeleton","last_synced_at":"2025-09-04T02:34:21.153Z","repository":{"id":4548467,"uuid":"5689207","full_name":"ericclemmons/wordpress-skeleton","owner":"ericclemmons","description":"[DEPRECATED] Dude, use https://github.com/genesis/wordpress/ !!","archived":false,"fork":false,"pushed_at":"2013-11-05T16:58:35.000Z","size":406,"stargazers_count":11,"open_issues_count":0,"forks_count":1,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-08-30T05:57:30.589Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://github.com/genesis/wordpress/","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ericclemmons.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2012-09-05T15:29:13.000Z","updated_at":"2024-12-05T16:01:35.000Z","dependencies_parsed_at":"2022-08-25T18:11:37.584Z","dependency_job_id":null,"html_url":"https://github.com/ericclemmons/wordpress-skeleton","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ericclemmons/wordpress-skeleton","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericclemmons%2Fwordpress-skeleton","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericclemmons%2Fwordpress-skeleton/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericclemmons%2Fwordpress-skeleton/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericclemmons%2Fwordpress-skeleton/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ericclemmons","download_url":"https://codeload.github.com/ericclemmons/wordpress-skeleton/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ericclemmons%2Fwordpress-skeleton/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":273542213,"owners_count":25124115,"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-09-04T02:00:08.968Z","response_time":61,"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-10-10T06:27:08.863Z","updated_at":"2025-09-04T02:34:21.098Z","avatar_url":"https://github.com/ericclemmons.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"[DEPRECATED] WordPress Skeleton\n===============================\n\n**USE https://github.com/genesis/wordpress/ INSTEAD! IT ROCKS!**\n\nOpinionated WordPress starter template that sets up local development\n\u0026 remote deployment via a simple configuration \u0026 command-line tools.\n\n\nFeatures\n--------\n\n* Simple installation \u0026 configuration via [Composer][2] \u0026 an interactive `console`\n* Local development environment via [Vagrant][1]\n* Simple local URLs like `http://local.mysite.com/` via [Vagrant Hostmaster][6]\n* Local \u0026 remote deployment via [Capistrano][4]\n* Simplified theme development via [_s][3] and the WordPress [Theme Unit Test][8]\n\n\nInstallation\n------------\n\n**Creating a New Theme**:\n\n    $ cd path/to/sites\n    $ git clone git://github.com/ericclemmons/wordpress-skeleton.git my-theme\n\n**Adding to an Existing Theme**:\n\n    $ cd path/to/existing/theme\n    $ git remote add skeleton git://github.com/ericclemmons/wordpress-skeleton.git\n    $ git fetch skeleton \u0026\u0026 git merge --squash skeleton/master\n\n\n* Download \u0026 Install [Vagrant][1]\n* Install [Vagrant Hostmaster][6]: `$ sudo gem install vagrant-hostmaster`\n* Capistrano: `$ sudo gem install capistrano capistrano-ext colored`\n* [Composer][2]: `$ curl -s https://getcomposer.org/installer | php`\n* Composer depependencies: `$ php composer.phar install`\n\n\nConfigure your `skeleton.yml`\n-----------------------------\n\nThis is where all WordPress plugins, admin logins \u0026 server information is stored.\n\n    $ ./bin/skeleton configure\n\n\n(Re)Generating Your WordPress Skeleton\n--------------------------------------\n\nThis is done automatically whenever you configure your `skeleton.yml`, but should\nbe ran if you make any changes to it manually:\n\n    $ ./bin/skeleton generate\n\n\nLocal Development\n-----------------\n\n    $ vagrant up\n\nThe first time you run this, you have to perform a `cold` deployment to setup\nthe folder structure \u0026 database:\n\n    $ cap local deploy:cold\n\nAfter doing it once, you can just do normal deployments, which will only update the theme:\n\n    $ cap local deploy\n\nOpen WordPress in your browser:\n\n    $ ./skeleton open\n\nNow you can make changes to `/src` and refresh!\n\nYou can always view `skeleton.yml` or run `./skeleton info` for WordPress Admin credentials.\n\n\nUseful Commands\n---------------\n\n- `./skeleton` will list all possible commands you can run to affect your local\n  skeleton's configuration.  These commands are also ran remotely via `cap` to\n  perform tasks on the server.\n\n- `cap -T` will list all deployment \u0026 WordPress-related commands that can be used\n  with each environment.  (You will use `local` the most)\n\n\n[1]: http://downloads.vagrantup.com/\n[2]: http://getcomposer.org/\n[3]: http://underscores.me/\n[4]: http://capistranorb.com/\n[5]: http://github.com/WordPress/WordPress\n[6]: http://github.com/mosaicxm/vagrant-hostmaster\n[8]: http://codex.wordpress.org/Theme_Unit_Test\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericclemmons%2Fwordpress-skeleton","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fericclemmons%2Fwordpress-skeleton","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fericclemmons%2Fwordpress-skeleton/lists"}