burkhardmeyer / craft-starter
Craft 3 CMS boilerplate project
Installs: 54
Dependents: 0
Suggesters: 0
Security: 0
Stars: 2
Watchers: 1
Forks: 0
Open Issues: 3
Language:JavaScript
Type:project
Requires
- craftcms/cms: ^3.1.28
- craftcms/redactor: ^2.1.7
- mmikkel/retcon: ^2.0.12
- nystudio107/craft-cookies: ^1.1.11
- nystudio107/craft-minify: ^1.2.9
- nystudio107/craft-scripts: ^1.2.4
- nystudio107/craft3-multi-environment: ^1.0.5
- vlucas/phpdotenv: ^2.4.0
- yiisoft/yii2-redis: ^2.0.6
README
This is an alternate boilderplate package for Craft 3 CMS projects.
It builds on Pixel & Tonic's canonical craftcms/craft package and NYStudio's craft setup nystudio107/craft
Assumptions Made
- Gulp is used as a the frontend workflow automation tool
- Tailwind CSS is used as the utility-first CSS framework
- Apache is used as the web server
- Critical CSS is used site-wide
- FontFaceObserver is used for font loading
- Craft-Scripts are used for db/asset synching
- Craft 3 Multi-Environment is used for the Craft 3 multi-environment setup
- Modernizr is used for fallback solutions (e.g. CSS Grid)
Using burkhardmeyer/craft-starter
This project package works exactly the way Pixel & Tonic's craftcms/craft package works; you create a new project by first creating & installing the project:
composer create-project burkhardmeyer/craft-starter PATH -s RC
Make sure that PATH
is the path to your project, including the name you want for the project, e.g.:
composer create-project burkhardmeyer/craft-starter craft3 -s RC
Then cd
to your new project directory, and run Craft's setup
console command to create your .env
environments and optionally install:
cd PATH
./craft setup
Finally, run the nys-setup
command to configure Craft-Scripts & Craft 3 Multi-Environment based on your newly created .env
settings:
./nys-setup
That's it, enjoy!
If you ever delete the vendor
folder or such, just re-run:
./nys-setup
...and it will re-create the symlink to your .env.sh
; don't worry, it won't stomp on any changes you've made.