viget / craft-site-starter
Installs: 42
Dependents: 0
Suggesters: 0
Security: 0
Stars: 13
Watchers: 7
Forks: 2
Open Issues: 34
Type:project
Requires
- craftcms/aws-s3: 2.2.1
- craftcms/ckeditor: 4.0.6
- craftcms/cms: ^5.0.0
- mmikkel/cp-field-inspect: 2.0.1
- nystudio107/craft-emptycoalesce: 5.0.0
- nystudio107/craft-retour: 5.0.0
- nystudio107/craft-seomatic: 5.0.3
- nystudio107/craft-vite: ^5.0.0
- spacecatninja/imager-x: 5.0.0
- verbb/navigation: 3.0.0
- viget/craft-classnames: 3.0.0
- vlucas/phpdotenv: ^5.4.0
Requires (Dev)
- craftcms/ecs: dev-main
- craftcms/generator: ^2.0.0
- craftcms/phpstan: dev-main
- nystudio107/craft-autocomplete: ^1.12
- yiisoft/yii2-shell: ^2.0.3
This package is auto-updated.
Last update: 2024-11-11 19:04:38 UTC
README
This repo is a Composer "project" intended for use with the composer create-project
command.
Our starter uses DDEV for local development. Install it before doing any of the following steps.
Features
- Local development powered by DDEV
- Vite based front-end build tooling.
- Automatic linting, formatting and typechecking
- Runs on git pre-commit hook with Husky
- Only processes staged files using lint-staged
- Prettier, eslint, PHPStan, PHP Easy Coding Standard
- Common plugins come pre-installed
- Local email is routed through Mailpit ( never worry about emailing a client or user)
Getting Started
Create Project
-
Choose a folder for your project and move into it:
cd /path/to/web/projects mkdir my-project cd my-project
-
Create The Project If you already have PHP and Composer running on your host machine (your computer, not Docker container or DDEV instance), you can run the following command
composer create-project viget/craft-site-starter=^5.0.0 ./ --ignore-platform-reqs
If you'd rather not set up PHP, you can create the project with a desposable Docker image (Thanks nystudio107).
docker run --rm -it -v "$PWD":/app -v ${COMPOSER_HOME:-$HOME/.composer}:/tmp composer create-project viget/craft-site-starter=^5.0.0 ./ --ignore-platform-reqs
-
Start DDEV & Install Craft
ddev start ddev craft install
-
Run
ddev launch
to open the project in your browser
Plugins
This starter includes common plugins that we use on most of our sites. This provides consistency and familiarly between client projects. You may not need every plugin, but avoid replacing standard plugins with similar alternatives (unless absolutely necessary).
Contribute to this starter
Local Dev
Ideally, you should be able to clone this repo and make modifications to plugin & build tool configs with minimal fuss.
Run ddev start
and make edits in a feature branch.
See ARCHITECTURE.md for details on technical goals & decisions.