dgrigg / craft-3-boilerplate
Craft boilerplate setup, includes basic js/css/esbuild setup
Requires
- craftcms/cms: 4.3.10
- craftcms/redactor: 3.0.3
- misterbk/mix: ^1.6
- mmikkel/retcon: 2.6.1
- nystudio107/craft-seomatic: 4.0.20
- sebastianlenz/linkfield: 2.1.5
- topshelfcraft/wordsmith: 4.0.1
- verbb/navigation: 2.0.16
- verbb/super-table: 3.0.7
- vlucas/phpdotenv: ^5.4.0
This package is auto-updated.
Last update: 2025-03-26 17:47:09 UTC
README
This is a basic Craft 4 with common plugins and frontend resources I use.
Craft Plugins
- SuperTable
- Redactor
- LinkField
- SEO Matic
Frontend
Alpine https://alpinejs.dev/
Axios https://github.com/axios/axios
TailwindCss https://tailwindcss.com
Build
ESbuild is used to compile and bundle the CSS and Js files. Reference the ./src/js/build/build.js file for the entry points and options. Two primary options are used --minify
to output minified resources and --watch
to watch the ./src
and ./templates
directory for changes required a rebuild. The build will output versioned js and css files that can be referenced in the build/mix-manifest.json file and is used with Mix to in the Twig layout to load.
Project Setup
- terminal into the docker container
- run
composer create-project dgrigg/craft-boilerplate [project root] dev-master
- setup the local site domain and database (use ~www/docker/add-site.sh)
- create security key
./craft setup/security-key
- install craft
./craft setup
- remove the config/license.key file
- install plugins
./craft plugin/install ALL
- update craft and all plugins
./craft update all
- setup Craft https://craftcms.com/docs/4.x/installation.html
- exit the docker container and return to the local machine
- cd into the project root and run
npm install
Repo
- Setup a new git repo for the organization
- Add neccessary collaborators
- Initialize git repo and make first commit