This is the example blog application we created during the RailsGirls Bogotá workshop on June 20/2015.
To get this application running in your computer follow these instructions:
Check you have Ruby and Rails installed.
Clone the repository:
$ git clone [email protected]:RailsGirlsBogota/my_blog.git
$ cd my_blog
Install the app dependencies:
$ bundle install
Create the database and run the migrations:
$ bundle exec rake db:create
$ bundle exec rake db:migrate
Run the application:
$ rails server
Then on the browser visit: http://localhost:3000