roy-veldman / wirecraft
Boilerplate for Craft CMS project, which include webpack and a basic structure
1.1.9
2019-09-24 13:15 UTC
Requires
- craftcms/cms: 3.3.4.1
- craftcms/redactor: 2.4
- ether/seo: 3.6.2
- superbig/craft-entry-instructions: 1.0.5
- verbb/super-table: 2.3.0
- vlucas/phpdotenv: ^2.4.0
- dev-master
- 1.1.9
- 1.1.8
- 1.1.5
- 1.1.4
- 1.1.3
- 1.1.2
- 1.1.1
- 1.1.0
- 1.0.9
- 1.0.8
- 1.0.7
- 1.0.6
- 1.0.5
- 1.0.2
- 1.0.1
- 1.0.0
- dev-dependabot/npm_and_yarn/json5-and-json5-and-loader-utils-2.2.3
- dev-dependabot/npm_and_yarn/decode-uri-component-0.2.2
- dev-dependabot/npm_and_yarn/engine.io-and-browser-sync-6.2.1
- dev-dependabot/npm_and_yarn/loader-utils-and-loader-utils-and-webpack-cli-1.4.2
- dev-dependabot/npm_and_yarn/socket.io-parser-and-browser-sync-4.2.1
- dev-dependabot/npm_and_yarn/terser-4.8.1
- dev-dependabot/npm_and_yarn/ajv-6.12.6
- dev-dependabot/npm_and_yarn/node-sass-7.0.0
- dev-dependabot/npm_and_yarn/path-parse-1.0.7
- dev-dependabot/npm_and_yarn/tar-2.2.2
- dev-dependabot/npm_and_yarn/postcss-7.0.36
- dev-dependabot/npm_and_yarn/browserslist-4.16.6
- dev-dependabot/npm_and_yarn/hosted-git-info-2.8.9
- dev-dependabot/npm_and_yarn/lodash-4.17.21
- dev-dependabot/npm_and_yarn/ssri-6.0.2
- dev-dependabot/npm_and_yarn/y18n-3.2.2
- dev-dependabot/npm_and_yarn/elliptic-6.5.4
- dev-dependabot/npm_and_yarn/ini-1.3.7
- dev-dependabot/npm_and_yarn/acorn-6.4.1
- dev-develop
This package is auto-updated.
Last update: 2025-03-29 00:35:54 UTC
README
Build instructions
composer create-project roy-veldman/wirecraft [projectname]
cd
into the project- create database
mysql -u [username]
(add-p
if you have a password)create database [database-name];
- run
./craft setup/index
- run
composer update
- run
npm install
- run
npm run dev
- Login to the back-end
- Setup the homepage
- Go to settings -> plugins, and install the plugins
- Create Assets in the uploads folder
@web/assets/uploads/{images}
- Created an uploads folder for all the images and files you set-up in craft, this folder does not get pushed so you won't have any conflicts with local and production. The static images that are hardcoded or static icons are in the actual image or icons folder, these can be pushed.
Production build
run npm run build
if you are ready for production, this will minify the javascript and css files.
Starting instructions
If you created a homepage on the back-end of craft, whether is a single page or a structure you can start with the code below.
- Example of the filename
pages/_entry.twig
{% extends 'layouts/_master' %} {% block content %} {# content comes here #} {% endblock %}
Additional information
VueJS
- VueJs is already standard in the boilerplate, if you want to make use of it, follow the following steps:
- Inside app.js
import Vue from 'vue'
new Vue({
el: [targetElement]
});
- Inside JS folder
- create components folder
- create
.vue
files
- In the
.vue
files you can also access the global variables from your scss files, if you want to add or change this go intowebpack.common.js
and configure theconfigureCssLoader()
Jquery
- If you want to use Jquery on your project (which i don't recommend), follow the steps below
- All these changes are in the
webpack.common.js
// At the top of the file add the webpack variable const webpack = require('webpack'); // Inside the plugins add the following plugin, // Add this below the CopyWebpackPlugin new webpack.ProvidePlugin({ $: 'jquery', jQuery: 'jquery' })
Boilerplate information
- Craft CMS (clean install)
- Basic folder structure
- Src folder with JS and SCSS
- Starting files (
app.scss
/app.js
) - Standard mobile mixin ( already includes in
app.scss
) - Layout folder with
_master.twig
file, which contains basic layout file ( css and js includes aswell as seo plugin )
- Craft Module
- Cache busting (gives the css and js files a version number)
- Craft Plugins
- Entry instructions
- Super table
- SEO
- Redactor
- Webpack (for compiling css and js)
- ES6 functionality
- SCSS
- VueJS
- File-loader
- Babel
- Copying static assets ( standard fonts and icons )
- Minify CSS and JS on production ( prefix included! )
- Live server with hot reload
- Clean files plugin ( removes unused css and js files from assets folder )
By Roy Veldman