high-five / base
Easily create a barebones Craft CMS website project.
Installs: 1
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 1
Forks: 0
Open Issues: 0
Type:project
Requires
- php: ^8.1
- craftcms/ckeditor: ^3.0
- craftcms/cms: ^4.0
- high-five/component-library: dev-master
- nystudio107/craft-vite: ^4.0
- vlucas/phpdotenv: ^5.4.0
Requires (Dev)
- craftcms/generator: ^1.3.0
- yiisoft/yii2-shell: ^2.0.3
This package is auto-updated.
Last update: 2025-03-20 01:09:04 UTC
README
Easily create a barebones Craft CMS website project.
Creating a new project
Before creating a new project, you should ensure that your local machine has PHP, DDev and Composer installed.
After you have installed PHP, DDev and Composer, you may create a new project via the Composer create-project
command:
composer create-project high-five/base example-website.ext --stability=dev
After the project has been created, start the local development server using the Makefile's start
command:
cd example-website.ext
make start
The development server should now be running at https://example-website.ext
. You are ready to install Craft CMS!
make install
make
commands
Run make
or make help
for an overview of the available commands.
Command | Description |
---|---|
make ddev |
Start DDEV server |
make deps |
Install dependencies |
make start |
Start DDEV server and install dependencies |
make serve |
Start DDEV server, install dependencies and start NPM dev server |
make dev |
Start NPM dev server |
make build |
Build for production |
make install |
Install Craft CMS |
make db-export |
Export the DDEV database to the ./sql/ directory |