journalduhacker/README.md

85 lines
2.9 KiB
Markdown
Raw Normal View History

###Lobsters Rails Project
2012-09-18 17:13:25 +02:00
This is the source code to the site operating at
[https://lobste.rs](https://lobste.rs). It is a Rails 3 codebase and uses a
SQL (MySQL in production) backend for the database and Sphinx for the search
engine.
While you are free to fork this code and modify it (according to the [license](https://github.com/jcs/lobsters/blob/master/LICENSE))
to run your own link aggregation website, this source code repository and bug
tracker are only for the site operating at [lobste.rs](https://lobste.rs/).
Please do not use the bug tracker for support related to operating your own
site unless you are contributing code that will also benefit [lobste.rs](https://lobste.rs/).
####Contributing bugfixes and new features
Please see the [CONTRIBUTING](https://github.com/jcs/lobsters/blob/master/CONTRIBUTING.md)
file.
####Initial setup
2012-09-18 17:13:25 +02:00
* Install Ruby 1.9.3.
2012-09-18 17:13:25 +02:00
* Checkout the lobsters git tree from Github
$ git clone git://github.com/jcs/lobsters.git
$ cd lobsters
lobsters$
2012-09-18 17:13:25 +02:00
* Run Bundler to install/bundle gems needed by the project:
lobsters$ bundle
2012-09-18 17:13:25 +02:00
* Create a MySQL (other DBs supported by ActiveRecord may work, only MySQL has
been tested) database, username, and password and put them in a
`config/database.yml` file:
2012-08-24 18:52:21 +02:00
development:
adapter: mysql2
encoding: utf8
reconnect: false
database: lobsters_dev
socket: /tmp/mysql.sock
username: *username*
password: *password*
test:
adapter: sqlite3
database: db/test.sqlite3
pool: 5
timeout: 5000
2012-09-18 17:13:25 +02:00
* Load the schema into the new database:
lobsters$ rake db:schema:load
* Create a `config/initializers/secret_token.rb` file, using a randomly generated key from the output of `rake secret`:
Lobsters::Application.config.secret_token = 'your random secret here'
* (Optional, only needed for the search engine) Install Sphinx. Build Sphinx config and start server:
lobsters$ rake thinking_sphinx:rebuild
2012-09-18 17:13:25 +02:00
* Create an initial administrator user and at least one tag:
lobsters$ rails console
Loading development environment (Rails 3.2.6)
irb(main):001:0> u = User.new(:username => "test", :email => "test@example.com", :password => "test")
irb(main):002:0> u.is_admin = true
irb(main):003:0> u.is_moderator = true
irb(main):004:0> u.save
irb(main):005:0> t = Tag.new
irb(main):006:0> t.tag = "test"
irb(main):007:0> t.save
2012-09-18 17:13:25 +02:00
* The default development hostname is defined as `lobsters.localhost:3000`.
You should define this in `/etc/hosts` (or through DNS) to point to
`127.0.0.1`.
2012-09-18 17:13:25 +02:00
* Run the Rails server in development mode. You should be able to login to
`http://lobsters.localhost:3000` with your `test` user:
lobsters$ rails server