{"id":21084157,"url":"https://github.com/unplugstudio/wp-base-theme","last_synced_at":"2026-05-01T08:31:34.551Z","repository":{"id":37952894,"uuid":"264325631","full_name":"unplugstudio/wp-base-theme","owner":"unplugstudio","description":"Base WordPress theme","archived":false,"fork":false,"pushed_at":"2024-05-20T16:17:42.000Z","size":1820,"stargazers_count":0,"open_issues_count":17,"forks_count":1,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-06-26T10:51:47.077Z","etag":null,"topics":["es6","js","sass","scss","wordpress","wordpress-starter-theme","wordpress-theme"],"latest_commit_sha":null,"homepage":null,"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/unplugstudio.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,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2020-05-16T00:12:58.000Z","updated_at":"2024-05-20T16:17:45.000Z","dependencies_parsed_at":"2024-05-20T18:29:16.632Z","dependency_job_id":null,"html_url":"https://github.com/unplugstudio/wp-base-theme","commit_stats":null,"previous_names":[],"tags_count":1,"template":true,"template_full_name":null,"purl":"pkg:github/unplugstudio/wp-base-theme","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unplugstudio%2Fwp-base-theme","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unplugstudio%2Fwp-base-theme/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unplugstudio%2Fwp-base-theme/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unplugstudio%2Fwp-base-theme/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/unplugstudio","download_url":"https://codeload.github.com/unplugstudio/wp-base-theme/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/unplugstudio%2Fwp-base-theme/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":32490810,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-30T13:12:12.517Z","status":"online","status_checked_at":"2026-05-01T02:00:05.856Z","response_time":64,"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":["es6","js","sass","scss","wordpress","wordpress-starter-theme","wordpress-theme"],"created_at":"2024-11-19T20:22:44.117Z","updated_at":"2026-05-01T08:31:34.537Z","avatar_url":"https://github.com/unplugstudio.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Base WordPress theme\n\n## Important concepts\n\n- [WP CLI `dotenv` command](https://github.com/aaemnnosttv/wp-cli-dotenv-command)\n- [Bedrock](https://roots.io/docs/bedrock/master/installation/) (Wordpress theme structure).\n\n## Initializing\n\n```bash\n# Switching to the right version of nodejs using nvm (node version manager)\n# If you don't have it installed go to https://nvm.sh/ for instructions\nnvm use\n# Generate configuration and secrets\nwp dotenv init --template=.env.example --with-salts --interactive\n# Frontend requirements\nnpm install\n# Backend requirements\ncomposer install\n```\n\n## Development mode\n\nIn development mode Webpack will compile your SCSS (with autoprefixer) and JS (ES6) files and start a Browsersync server continually watching your changes. Files will also be written to `assets/dist`. The entry points are `assets/js/index.js` and `assets/scss/index.scss`.\n\nAssuming your local WordPress installation is served at http://example.test, you can run the Browsersync server like this:\n\n```bash\n# Short version\nnpm run dev proxy=\"example.test\"\n# Long version\nnpm start -- --env proxy=\"example.test\"\n```\n\nNow the proxied site with auto-reload will be available at http://localhost:3000. The regular site without auto-reload will still be available at the original URL.\n\nYou can also modify the dev script located in package.json with your local url to save some time.\n\n```json\n\"scripts\": {\n  \"dev\": \"npm run start -- --env proxy='example.test'\"\n}\n```\n\n## Production mode\n\nIn production mode Webpack will compile your assets and create minified files in `assets/dist`. You can then transfer these files to the server by using FTP or `rsync`. To compile in production mode:\n\n```bash\nnpm run build\n# To delete previous assets/dist folder and build\nnpm run build:full\n```\n\nThe resulting files are generated with unique names by Webpack to get automatic cache-busting when enqueued in WordPress.\n\n## Code style\n\nLinting is configured in `assets/.eslintrc` (JS), `assets/.stylelintrc` (CSS), and `.php_cs.dist` (PHP). Check the files for the configuration details.\n\nLinters can be run with:\n\n```bash\n# Frontend files\nnpm run lint:js\nnpm run lint:css\n\n# PHP files\ncomposer run-script lint\n```\n\n## Additional Scripts\n\n```bash\n# deletes previous assets/dist folder and runs npm run dev\nnpm run dev:full proxy=\"\u003cyourWebsite.test\u003e\"\n# deletes previous assets/dist folder and runs npm run build\nnpm run build:full\n# Lint js and css\nnpm run lint:full\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funplugstudio%2Fwp-base-theme","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Funplugstudio%2Fwp-base-theme","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Funplugstudio%2Fwp-base-theme/lists"}