{"id":13697865,"url":"https://github.com/jeffreyvr/tailpress","last_synced_at":"2025-04-11T05:08:40.964Z","repository":{"id":37708239,"uuid":"216647402","full_name":"jeffreyvr/tailpress","owner":"jeffreyvr","description":"TailPress is a minimal boilerplate theme for WordPress using Tailwind CSS.","archived":false,"fork":false,"pushed_at":"2025-03-16T12:16:18.000Z","size":2731,"stargazers_count":1330,"open_issues_count":1,"forks_count":163,"subscribers_count":34,"default_branch":"4.x","last_synced_at":"2025-04-11T05:08:35.248Z","etag":null,"topics":["tailwind","tailwindcss","wordpress-theme","wordpress-theme-boilerplate"],"latest_commit_sha":null,"homepage":"https://tailpress.io","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/jeffreyvr.png","metadata":{"files":{"readme":"README.MD","changelog":"CHANGELOG.md","contributing":null,"funding":".github/FUNDING.yml","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},"funding":{"github":"jeffreyvr","custom":["https://vanrossum.dev/donate"]}},"created_at":"2019-10-21T19:20:19.000Z","updated_at":"2025-04-10T03:17:19.000Z","dependencies_parsed_at":"2023-12-22T16:07:59.995Z","dependency_job_id":"0993c721-3d81-475a-bafc-0551ce35b34d","html_url":"https://github.com/jeffreyvr/tailpress","commit_stats":{"total_commits":135,"total_committers":10,"mean_commits":13.5,"dds":"0.14814814814814814","last_synced_commit":"fc32d0542818431826ed4bd9f57058d687f6f4c3"},"previous_names":[],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeffreyvr%2Ftailpress","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeffreyvr%2Ftailpress/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeffreyvr%2Ftailpress/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jeffreyvr%2Ftailpress/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jeffreyvr","download_url":"https://codeload.github.com/jeffreyvr/tailpress/tar.gz/refs/heads/4.x","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248345266,"owners_count":21088244,"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","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":["tailwind","tailwindcss","wordpress-theme","wordpress-theme-boilerplate"],"created_at":"2024-08-02T18:01:04.066Z","updated_at":"2025-04-11T05:08:40.940Z","avatar_url":"https://github.com/jeffreyvr.png","language":"PHP","funding_links":["https://github.com/sponsors/jeffreyvr","https://vanrossum.dev/donate"],"categories":["PHP"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\u003ca href=\"https://tailpress.io\" target=\"_blank\"\u003e\u003cimg src=\"https://tailpress.io/images/tailpress100.svg\" width=\"260\" alt=\"TailPress\"\u003e\u003c/a\u003e\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n\u003ca href=\"https://github.com/jeffreyvr/tailpress/releases/\"\u003e\u003cimg src=\"https://img.shields.io/github/release/jeffreyvr/tailpress?include_prereleases=\u0026sort=semver\" alt=\"GitHub release\"\u003e\u003c/a\u003e\n\u003ca href=\"#license\"\u003e\u003cimg src=\"https://img.shields.io/badge/License-MIT-blue\" alt=\"License\"\u003e\u003c/a\u003e\n\u003c/p\u003e\n\n## About TailPress\n\nTailPress is a minimal boilerplate theme for WordPress using [Tailwind CSS](https://tailwindcss.com/).\n\n## Getting started\n\nYou can use the TailPress [installer](#installer), or you can simply [clone](#clone-repository) this repository.\n\n### Installer\n\nTo use installer, you need to install it globally via Composer:\n\n`composer global require jeffreyvanrossum/tailpress-installer`\n\nAfterwards, you can run:\n\n`tailpress new example-theme`\n\n*If the tailpress command is not found, make sure to place Composer's global vendor bin in your `$PATH` ([see](#command-tailpress-not-found)).*\n\nFlags you can pass when using the installer:\n- Set a theme name `--name=\"Example Theme\"`\n- Initialize a git repository `--git`\n- Set the git branch name `--branch=\"main\"`\n\nIf you choose to install WordPress through the installer, these flags might be of interest as well:\n`--dbname`, `--dbuser`, `--dbpass` and `--dbhost`.\n\nOnce your theme is ready, don't forget to cd into the directory.\n\nYou will be asked if you would like to have WordPress installed as well. Keep in mind that you still need a local development environment for PHP and MySQL.\n\n### Clone repository\n\n* Clone repo `git clone https://github.com/jeffreyvr/tailpress.git \u0026\u0026 cd tailpress`\n* Run `rm -rf .git` to remove git (or `rmdir .git` for Windows)\n* Run `npm install`\n* Run `npm run watch` to start developing\n\n## Resources and compiling\n\nYou will find the editable CSS and Javascript files within the `/resources` folder.\n\nBefore you use your theme in production, make sure you run `npm run production`.\n\nThere are several NPM scripts available. You'll find the full list in the `package.json` file under \"scripts\". A script is executed through the terminal by running `npm run script-name`.\n\n| Script     | Description                                                                    |\n|------------|--------------------------------------------------------------------------------|\n| production | Creates a production (minified) build of app.js, app.css and editor-style.css.  |\n| dev        | Creates a development build of app.js, app.css and editor-style.css.           |\n| watch      | Recompiles after changes are made.                                             |\n\n## Tips\n\n### Styling within the block editor\n\nTo make the editing experience within the block editor more in line with the front end styling, a `editor-style.css` is generated.\n\n### CSS classes generated by TailPress\n\nCSS classes for alignment (full, wide etc.) are located in `resources/css/utilities.css`.\n\n### Customize colors\n\nSeveral colors and font sizes are defined `theme.json` and the resulting variables are used in the `resources/css/theme.css` file.\n\n### Command `tailpress` not found\n\nMake sure to place Composer's global vendor bin directory in your `$PATH` so the `tailpress` executable can be found by your system. This directory exists in different locations based on your operating system; however, some common locations include:\n\n- macOS: `$HOME/.composer/vendor/bin`\n- Windows: `%USERPROFILE%\\AppData\\Roaming\\Composer\\vendor\\bin`\n- GNU / Linux Distributions: `$HOME/.config/composer/vendor/bin or $HOME/.composer/vendor/bin`\n\nYou could also find the composer's global installation path by running `composer global about` and looking up from the first line.\n\n## Links\n\n* [TailPress website](https://tailpress.io)\n* [Screencasts](https://www.youtube.com/playlist?list=PL6GBdOp044SHIOSCZejodwr1HcYsC43wG)\n* [Tailwind CSS Documentation](https://tailwindcss.com/docs)\n* [Laravel Mix Documentation](https://laravel-mix.com)\n\n## Contributors\n\n* [Jeffrey van Rossum](https://github.com/jeffreyvr)\n* [All contributors](https://github.com/jeffreyvr/tailpress/graphs/contributors)\n\n## License\n\nMIT. Please see the [License File](/LICENSE) for more information.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeffreyvr%2Ftailpress","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjeffreyvr%2Ftailpress","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjeffreyvr%2Ftailpress/lists"}