Jekyll: https://jekyllrb.com/ Tachyons: http://tachyons.io/
- Create new directory locally
git clone [email protected]:tachyons-css/tachyons.git [dir-name]
cd [dir-name]
- Create new Github repo, then
git remote rm origin
git remote add origin [repo-url]
git pomu
npm install
sudo gem install -n /usr/local/bin jekyll
jekyll new . --force
- Modify
.gitignore
to includenode_modules
,npm-debug.log
,.DS_STORE
, and*.swp
- Modify
_config.yml
and addexclude: ['build', 'bower.json', 'license', 'node_modules', 'package.json', 'readme.md', 'src']
at the end to exclude them from the Jekyll build - Run
jekyll serve
to test that everything is working; if not, you may need togem install bundler
andgem install minima
first (dependencies may not have gotten installed with Jekyll)
MIT