aymerick / aymerick.github.io

My personal website

Home Page:http://www.aymerick.com

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

aymerick.github.io

My static website http://www.aymerick.com generated with Jekyll.

Development

Install tools:

$ npm install -g grunt-cli
$ npm install -g bower
$ gem install bundle

Install dependencies:

$ npm install
$ bower install
$ bundle install

Build the site and watch for changes:

$ grunt -v

Browse http://127.0.0.1:4000

Deploy to Github Pages:

$ rake deploy

Repository setup

Rename local master to source:

$ git branch -m master source

Push source to remote:

$ git push -u origin source

Delete remote master:

$ git push origin :master

Create new local master (empty):

$ git checkout --orphan master
$ git rm --cached -r .
$ echo 'Coming soon' > index.html
$ git add index.html
$ git commit -m "init"

Push master to remote:

$ git push -u origin master

Checkout master in _site subdirectory:

$ git clone git@github.com:aymerick/aymerick.github.io.git -b master _site

References

About

My personal website

http://www.aymerick.com

License:MIT License


Languages

Language:HTML 58.2%Language:CSS 28.0%Language:Ruby 10.1%Language:CoffeeScript 3.7%