dbushell-Origin
Welcome to Origin, my front-end development starter kit. Origin is one part automated build tasks and one part baseline pattern library.
About this project
Like the Web itself this project is forever a work in progress. I’ve decided to make Origin public for those interested. Origin it not a final solution, framework, or boilerplate I expect others to use “as is”.
From time to time Origin will include experimental and far from optimal build tasks. You may prefer a less bespoke workflow like Yeoman or a CSS framework like Inuit.css without my preferences.
Getting started reminder…
- Prerequisites: Git, Node
- Create a new project repo with
git init
- Add default remote if required (see: GitHub Help — Create A Repo for example)
- Add and fetch Origin as a remote repository:
git remote add -f dbushell-Origin git@github.com:dbushell/dbushell-Origin.git
- Merge Origin into the new project:
git merge dbushell-Origin/master
- Run
npm install
to install Node dependencies - Run
grunt
to build this website to./build/
Use grunt watch
to rebuild HTML and CSS when files are edited.
Use http-server -p 8080 ./build
for local testing.