i-lateral / ss4-recipe
SilverStripe 'kitchen sink' recipe for full CMS features
Installs: 161
Dependents: 0
Suggesters: 0
Security: 0
Stars: 1
Watchers: 4
Forks: 0
Open Issues: 0
Language:SCSS
Type:silverstripe-recipe
Requires
- axllent/silverstripe-scaled-uploads: ^2.1
- fractas/cookiepolicy: ^2.0
- heyday/silverstripe-gridfieldversionedorderablerows: ss4-upgrade-dev
- hubertusanton/silverstripe-seo: ^4.0
- i-lateral/silverstripe-childhubpage: ^2.0
- i-lateral/silverstripe-custommenus: ^2.0
- i-lateral/silverstripe-deferedimages: ^1.0
- i-lateral/silverstripe-socialnav: ^2.0
- ilateral/silverstripe-bootstrap-4: ^1.0
- jonom/focuspoint: ^3.0
- silverstripe/blog: ^3.0
- silverstripe/recipe-form-building: ^1.4
- silverstripe/widgets: ^2.0
- symbiote/silverstripe-gridfieldextensions: ^3.1
- undefinedoffset/silverstripe-nocaptcha: ^2.0
- wilr/silverstripe-googlesitemaps: ^2.1
Requires (Dev)
- phpunit/phpunit: ^5.7
- 1.x-dev
- 0.4.1
- 0.4
- 0.3.8
- 0.3.7
- 0.3.6
- 0.3.5
- 0.3.4
- 0.3.3
- 0.3.2
- 0.3.1
- 0.3.0
- 0.2.0
- 0.1.7
- 0.1.6
- 0.1.5
- 0.1.4
- 0.1.3
- 0.1.2
- 0.1.1
- 0.1.0
- dev-dependabot/npm_and_yarn/themes/custom/semver-5.7.2
- dev-dependabot/npm_and_yarn/themes/custom/tar-6.2.1
- dev-dependabot/npm_and_yarn/themes/custom/postcss-8.4.39
- dev-dependabot/npm_and_yarn/themes/custom/express-4.19.2
- dev-dependabot/npm_and_yarn/themes/custom/follow-redirects-1.15.6
- dev-dependabot/npm_and_yarn/themes/custom/webpack-dev-middleware-5.3.4
- dev-dependabot/npm_and_yarn/themes/custom/ws-8.17.1
- dev-dependabot/npm_and_yarn/themes/custom/word-wrap-1.2.5
- dev-dependabot/npm_and_yarn/themes/custom/webpack-5.76.0
- dev-dependabot/npm_and_yarn/themes/custom/http-cache-semantics-4.1.1
This package is auto-updated.
Last update: 2024-07-03 15:33:49 UTC
README
ilateral SilverStripe Kitchen Sink Recipe
Base SilverStripe website install that contains all the modules we commonly use.
Creating a new project
Recipes can be introduced to any existing project (even if not created on a silverstripe base project)
$ composer init $ composer require i-lateral/ss4-recipe
Alternatively you can create a new project based on an existing recipe
$ composer create-project i-lateral/ss4-recipe ./myssproject ^1.0@dev
Inlining recipes
You can "inline" either a previously installed recipe, or a new one that you would like to include dependencies for in your main project. By inlining a recipe, you promote its requirements, as well as its project files, up into your main project, and remove the recipe itself from your dependencies.
This can be done with either update-recipe
, which will update a recipe, or require-recipe
which will
install a new recipe.
Note that if you wish to run this command you must first install either a recipe via normal composer commands, or install the recipe plugin:
$ composer init $ composer require i-lateral/ss4-recipe ^0.1 $ composer require-recipe i-lateral/ss4-recipe ^1.0@dev
or
$ composer init $ composer require i-lateral/ss4-recipe ^1.0@dev $ composer update-recipe i-lateral/ss4-recipe
Further Docs
More comprehensive documentation can be found at the recipe plugin github page
Themes
This recipe installs multiple possible base themes, but also builds a "custom" theme that can be used to overwrite the default selected theme.
If you want to switch out the default base theme to an
alternative, it is recommended that you change bootstrap
in theme.yml
to your alternative, EG:
SilverStripe\View\SSViewer:
themes:
- 'custom'
- 'deferedimages'
- 'bootstrap' # Change this to your base theme
- '$default'
Webpack
The custom theme (and parent themes) are designed to use webpack to help package and manage CSS and JS requirements.
Alternativley you can just use the default SilverStripe way (add your own files to dist/css or dist/js) but you will have to manage combining and compressing them.
This is handled automatically via webpack
.
Getting Started
To get started using webpack to manage your JS and CSS requirements, first you have to install yarn
Once you have installed yarn, navigate to your theme dir:
# cd /path/to/my/project/themes/custom
Now install node modules (can take a little while)
# yarn install
Adding Custom CSS/JS
Next add your custom JS or CSS (SASS) to the relevent folders
(themes/custom/src/javascript
or themes/custom/src/scss
respectivley), if you add any new files, you will need to
import them in the following locations:
- SCSS Files are added to
themes/custom/src/scss/bundle.scss
- JS files will need to be mapped directly in
themes/custom/webpack.common.js
Finally, run one of the following command to transpile/minify your files
yarn dev
: Transpile all files for development purposes (do not minify)yarn build
: Transpile AND minify for production
Linting
Some linting functionality is included to help keep code tidy. If you want to lint/tidy your CSS/JS you can run the following:
yarn lint:styles
oryarn lint:styles:fix
Check or attempt to fix issues with SCSSyarn lint:scripts
oryarn lint:scripts:fix
Check or attempt to fix issues with JS