From 125dae81d24521b9b8551defd42d653f145b5261 Mon Sep 17 00:00:00 2001 From: Marcin Kulik Date: Mon, 9 Apr 2012 13:44:38 +0200 Subject: [PATCH] Words --- README.md | 50 +++++++++++++++++++++++++++++++++++-- config/database.yml.example | 2 +- 2 files changed, 49 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 59a4c6e..0dd4674 100644 --- a/README.md +++ b/README.md @@ -1,4 +1,50 @@ # ascii.io [![Build Status](https://secure.travis-ci.org/sickill/ascii.io.png?branch=master)](http://travis-ci.org/sickill/ascii.io) -Here are the sources of ascii.io website. If you look for ascii.io command line -recorder look here: https://github.com/sickill/ascii.io-cli +This is the source code of ascii.io website/player. If you look for ascii.io command line +recorder go here: https://github.com/sickill/ascii.io-cli + +Below are setup instructions in case you want to contribute and/or play with it +on your local machine. + +## Requirements + +ascii.io site is a Ruby on Rails application. You should have following +installed: + +* ruby 1.9.2+ (``rvm install 1.9.2``) +* bundler (``gem install bundler``) + +For thumbnail generation you need also: + +* tmux +* scriptreplay (Linux only via ``script`` package. OSX users: sorry, your script + command is crippled anyway) + +## Setup + +### Clone + + $ git clone git://github.com/sickill/ascii.io.git + $ cd ascii.io + +### Install gem dependencies + + $ bundle install + +### Setup DB + +* copy *config/database.yml.example* to *config/database.yml* and set adapter + to what you prefer, +* create *ascii_io_development* database, +* run ``bundle exec db:setup`` + +### Start + +* start webserver with ``script/rails s`` +* (optional) start background job worker for thumbnail generation with + ``bundle exec sidekiq`` + +## Authors + +* Marcin Kulik (sickill) +* Michał Wróbel (sparrovv) diff --git a/config/database.yml.example b/config/database.yml.example index 2f334f7..0d5fc60 100644 --- a/config/database.yml.example +++ b/config/database.yml.example @@ -9,7 +9,7 @@ development: adapter: mysql2 encoding: utf8 database: ascii_io_development - pool: 5 + pool: 25 username: root password: socket: /tmp/mysql.sock