Personal web site with portfolio and static blog.
There is no point to build complicated construction for a home page with blog for one person. It should be extremely simple.
Of course, it's static!
$ touch views/blog/$(date +%s).md
$ heroku create
$ git push heroku master
$ heroku ps:scale web=1
You can use vagrant which configs are inside this project.
- Install Vagrant
- Install chef & librarian:
$ gem install chef librarian
- Install the chef cookbooks:
$ librarian-chef install
- Build the VM:
$ vagrant up
- Login to the VM:
$ vagrant ssh
- Project is located at /vagrant folder:
$ cd /vagrant
.
When you are done, exit the VM and run the following command to suspend it until later: $ vagrant suspend
- Run server:
$ rake server
- Run console:
$ rake console