Basic Jekyll website starting point
First up, make sure node (and npm), ruby and Bundler are installed globally:
- Run
bundle install
- Run
npm install
in the project root to install any node packages and allow the npm scripts to run
To work on the site locally you need to build the site and run a development server.
- Run
npm start
in the project root to work on the site content and structure (built with Jekyll) - Go to http://localhost:4000/ in your browser
Run npm run build
to build the site out into the /dist/ directory. This doesn't run a local development server or watch the /src/ directory for any SCSS or Jekyll changes.
Do this with caution.
- Run
npm update
in the project root