mikefrancis / craft-starter-kit
Craft CMS starter kit
Installs: 3
Dependents: 0
Suggesters: 0
Security: 0
Stars: 3
Watchers: 0
Forks: 0
Open Issues: 2
Type:project
Requires
- php: >=7.0.0
- ext-gd: *
- craftcms/aws-s3: ^1.0
- craftcms/cms: ^3.0.0
- roave/security-advisories: dev-master
- venveo/craft3-mix: ^1.0
- vlucas/phpdotenv: ^2.4.0
This package is auto-updated.
Last update: 2021-08-08 14:52:53 UTC
README
An opinionated Craft CMS starter kit, featuring the following:
- Sass pre-processing
- ES6 compilation
- Cache bursting
- Composer managed
- AWS S3 asset management
- Git deploys to Heroku
Installation
Start by installing Composer, if you don't already have it. Then create a new project:
composer create-project mikefrancis/craft-starter-kit my-new-project
Once this is complete you will then need to edit the generated .env
file to add your project's URL and database and
S3 credentials.
After completing this step, the final thing to do is to run the database migrations:
php craft migrate
Development
You can either view your project in the browser or run the following to start a new BrowserSync server:
npm run watch
This will watch your source files and perform your build tasks, then reload the browser for you. The server will proxy
to whatever is set as your APP_URL
in your .env
file.
Deployment
When you're ready to share your project, you can deploy it to Heroku for free (at the time of writing).
First, create a new Heroku app and add the ClearDB add-on:
heroku create heroku addons:create cleardb:ignite heroku config:get CLEARDB_DATABASE_URL
From the CLEARDB_DATABASE_URL
, you will need to extract the following:
mysql://{$USERNAME}:{$PASSWORD}@{$SERVER}.cleardb.net/{$DATABASE}?reconnect=true
And replace the values below with those values:
heroku config:set \
APP_ENV=production \
APP_KEY=$(openssl rand -base64 32) \
DB_DRIVER=mysql \
DB_HOSTNAME=SERVER.cleardb.net \
DB_USERNAME=USERNAME \
DB_PASSWORD=PASSWORD \
DB_DATABASE=DATABASE
(We are trying to find a way to automate this!)
Once these environment variables have been published to Heroku, you are ready to push your code. Heroku will then take care of installing the dependencies and migrating the database:
git push heroku master
Then you can view your project!
heroku open
Extending
As we're making use of the fantastic Laravel Mix package, you can take advantage of other configurations and build tasks enabled, such as:
- Copying folders (if you are using custom fonts)
- Compiling JSX templates
Please check the docs for more!