asciinema hosting web app
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
Go to file
Marcin Kulik dda0d56fb7 Decompress stdout data on server side 13 years ago
app Decompress stdout data on server side 13 years ago
config Send email to asciicast author when someone comments 13 years ago
db Merge branch 'likes' 13 years ago
doc
lib
public Decompress stdout data on server side 13 years ago
script
spec Send email to asciicast author when someone comments 13 years ago
vendor
.gitignore Simplecov 13 years ago
.travis.yml
Capfile
Gemfile Simplecov 13 years ago
Gemfile.lock Simplecov 13 years ago
Guardfile
README.md
Rakefile
config.ru

README.md

ascii.io Build Status

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,
  • 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)