Installing god

Installing with generator-sin

Installing with eliosin's own generator-sin is the recommended way.

Installing with NPM or Yarn as a dependency of your current project

Add god as an NPM package.

npm install @elioway/god --save-dev
yarn add @elioway/god --dev

Add it to your compile funnel

@import "./node_modules/@elioway/god/stylesheets/settings";
@import "./node_modules/@elioway/god/stylesheets/theme";

Using your own settings

@import "my_gods_settings";
@import "./node_modules/@elioway/god/stylesheets/theme";

Nah! I'll just use the dist

<link rel="stylesheet" href="node_modules/@elioway/god/dist/css/god.min.css" />

gulp watch issues

If gulp crashes while running "watch", try this shell command in Linux.

echo fs.inotify.max_user_watches=524288 | sudo tee -a /etc/sysctl.conf
sudo sysctl -p