asciinema.org/README.md

97 lines
2.8 KiB
Markdown
Raw Normal View History

# asciinema.org
2012-04-03 10:03:31 +00:00
2014-08-05 14:31:51 +00:00
[![Build Status](https://travis-ci.org/asciinema/asciinema.org.svg?branch=master)](https://travis-ci.org/asciinema/asciinema.org)
2015-03-06 10:10:33 +00:00
[![Code Climate](https://codeclimate.com/github/asciinema/asciinema.org/badges/gpa.svg)](https://codeclimate.com/github/asciinema/asciinema.org)
2015-03-06 10:30:48 +00:00
[![Coverage Status](https://coveralls.io/repos/asciinema/asciinema.org/badge.svg)](https://coveralls.io/r/asciinema/asciinema.org)
2013-12-09 16:42:11 +00:00
Record and share your terminal sessions, the right way.
asciinema is a free and open source solution for recording terminal sessions
and sharing them on the web.
2012-04-09 11:44:38 +00:00
This is the source code of asciinema.org website. If you're looking for
asciinema's terminal recorder go here:
[asciinema/asciinema](https://github.com/asciinema/asciinema)
2012-04-09 11:44:38 +00:00
2012-10-12 19:46:40 +00:00
## Setup instructions
Below you'll find setup instructions in case you want to contribute, play with
2015-03-06 10:35:54 +00:00
it on your local machine, or setup your own instance for private use or for
your organization.
2012-05-06 00:02:36 +00:00
2012-10-12 20:14:01 +00:00
### 1. Install dependencies
2012-04-09 11:44:38 +00:00
2013-09-22 12:07:42 +00:00
asciinema.org site is a Ruby on Rails application. You need to have following
2012-10-12 20:29:31 +00:00
dependencies installed:
2012-04-09 11:44:38 +00:00
2014-09-06 13:37:00 +00:00
* Ruby 2.0+ (Ruby 2.1 is recommended)
2012-10-12 20:29:31 +00:00
2012-10-12 20:34:27 +00:00
* bundler gem
2012-10-12 19:46:40 +00:00
`gem install bundler`
2012-10-12 20:29:31 +00:00
2012-10-12 20:34:27 +00:00
* PostgreSQL 8+ with libpq development headers
2012-10-12 19:46:40 +00:00
`sudo apt-get install postgresql libpq-dev` on Debian/Ubuntu
2012-04-09 11:44:38 +00:00
2013-08-25 15:34:00 +00:00
* libtsm
2014-10-23 03:57:58 +00:00
See [here](http://cgit.freedesktop.org/~dvdhrm/libtsm/tree/README) for installation instructions.
2013-08-25 15:34:00 +00:00
If you don't install it now the setup script (point 4 below) will try to
install it for you anyway.
2012-04-09 11:44:38 +00:00
* phantomjs 2.0+
`sudo add-apt-repository ppa:tanguy-patte/phantomjs && sudo apt-get update && sudo apt-get install phantomjs`
2012-10-12 20:14:01 +00:00
### 2. Get the source code
Clone git repository:
2012-04-09 11:44:38 +00:00
2014-08-05 14:31:51 +00:00
```bash
$ git clone git://github.com/asciinema/asciinema.org.git
2014-08-05 14:31:51 +00:00
$ cd asciinema.org
```
2012-04-09 11:44:38 +00:00
2012-10-12 20:14:01 +00:00
### 3. Prepare database config file
2012-05-06 00:02:36 +00:00
2012-10-12 19:46:40 +00:00
Copy *config/database.yml.example* to *config/database.yml*. Then set
database/user/password to whatever you prefer.
If database specified in database.yml doesn't exist then the following setup
task will create it (make sure database user is allowed to create new
databases).
2012-04-09 11:44:38 +00:00
2012-10-12 20:14:01 +00:00
### 4. Setup the app
2012-04-09 11:44:38 +00:00
2012-10-12 20:14:01 +00:00
Following script will install gem dependencies and setup database:
2012-04-09 11:44:38 +00:00
2014-08-05 14:31:51 +00:00
```bash
$ ./script/setup
```
2012-04-09 11:44:38 +00:00
2012-10-12 20:14:01 +00:00
### 5. Run Rails server
2012-04-09 11:44:38 +00:00
2014-08-05 14:31:51 +00:00
```bash
$ bundle exec rails server
```
2013-08-25 15:34:00 +00:00
### 6. Run the background job processor
2015-03-06 10:35:54 +00:00
The background job processor is needed for asciicast pre-processing and
thumbnail generation.
2013-08-25 15:34:00 +00:00
2014-08-05 14:31:51 +00:00
```bash
$ bundle exec sidekiq
```
2012-04-09 11:44:38 +00:00
2013-12-03 19:09:18 +00:00
## Contributing
If you want to contribute to this project check out
[Contributing](http://asciinema.org/contributing) page.
2012-04-09 11:44:38 +00:00
## Authors
2013-10-06 11:02:37 +00:00
Developed with passion by [Marcin Kulik](http://ku1ik.com) and great open
source [contributors](https://github.com/asciinema/asciinema.org/contributors)
2013-10-06 11:02:37 +00:00
## Copyright
2015-03-06 08:32:05 +00:00
Copyright © 2011-2015 Marcin Kulik. See LICENSE.txt for details.