Go to file
Derek Prior 6eec2e26af
Support Ruby 2.2.0 and 2.3.0
Judging from the test suite, the only issue in supporting Ruby 2.2.0+
was with the `mysql2` gem. Updating this to the latest 0.3.x allows
Lobsters to run with newer Rubies.

We can't update to the absolute latest `mysql2` gem without first
updating Rails, which is why I used the pessimistic version constraint
for `mysql2`.
2016-03-05 17:19:44 -05:00
app css: apparently safari still doesn't support min-resolution 2016-03-02 09:41:52 -06:00
bin upgrade to rails v4.0.2 2013-12-30 17:40:52 -05:00
config add a tag cloud thingy 2015-11-09 09:52:32 -06:00
db add setting to show threads on a user's submitted stories in 'Your Threads' 2015-12-07 12:27:09 -06:00
extras Markdowner: disable automatic profile linking for now 2016-02-11 10:54:02 -06:00
lib Add task to generate test data 2014-07-07 12:15:28 +04:00
public show hidpi images for avatars, site load icon, and favicon 2015-11-01 19:56:30 -06:00
script post_to_twitter: guess anything with a dot and up to 10 letters is a domain 2016-02-17 14:21:56 -06:00
spec Markdowner: use Nokogiri for html rewriting 2015-12-07 12:27:03 -06:00
vendor/assets upgrade to rails v4.0.2 2013-12-30 17:40:52 -05:00
.gitignore add /chat page 2015-10-11 13:04:16 -05:00
.rspec Refactor HomeController 2014-07-09 22:25:39 +04:00
.ruby-version Support Ruby 2.2.0 and 2.3.0 2016-03-05 17:19:44 -05:00
CONTRIBUTING.md update readme/contributing to explain about non-lobste.rs use 2013-02-24 19:52:09 -06:00
Gemfile update to rails 4.1.12 2015-07-24 01:38:51 -05:00
Gemfile.lock Support Ruby 2.2.0 and 2.3.0 2016-03-05 17:19:44 -05:00
LICENSE Update license year range to 2016 2016-01-18 11:23:09 +05:30
README.md added seed to populate initial data. 2015-05-10 12:17:57 -03:00
Rakefile upgrade to rails v4.0.2 2013-12-30 17:40:52 -05:00
config.ru upgrade to rails v4.0.2 2013-12-30 17:40:52 -05:00

README.md

###Lobsters Rails Project

This is the source code to the site operating at https://lobste.rs. It is a Rails 4 codebase and uses a SQL (MariaDB 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) to run your own link aggregation website, this source code repository and bug tracker are only for the site operating at 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.

####Contributing bugfixes and new features

Please see the CONTRIBUTING file.

####Initial setup

  • Install Ruby. Supported Ruby versions include 1.9.3, 2.0.0 and 2.1.0.

  • Checkout the lobsters git tree from Github

       $ git clone git://github.com/jcs/lobsters.git
       $ cd lobsters
       lobsters$ 
    
  • Run Bundler to install/bundle gems needed by the project:

       lobsters$ bundle
    
  • Create a MySQL (other DBs supported by ActiveRecord may work, only MySQL and MariaDB have been tested) database, username, and password and put them in a config/database.yml file:

        development:
          adapter: mysql2
          encoding: utf8mb4
          reconnect: false
          database: lobsters_dev
          socket: /tmp/mysql.sock
          username: *username*
          password: *password*
    
        test:
          adapter: sqlite3
          database: db/test.sqlite3
          pool: 5
          timeout: 5000
    
  • 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_key_base = 'your random secret here'
    
  • (Optional, only needed for the search engine) Install Sphinx. Build Sphinx config and start server:

        lobsters$ rake ts:rebuild
    
  • Define your site's name and default domain, which are used in various places, in a config/initializers/production.rb or similar file:

        class << Rails.application
          def domain
            "example.com"
          end
    
          def name
            "Example News"
          end
        end
    
        Rails.application.routes.default_url_options[:host] = Rails.application.domain
    
  • Seed the database to create an initial administrator user and at least one tag:

        lobsters$ rake db:seed
        created user: test, password: test
        created tag: test
    
  • Run the Rails server in development mode. You should be able to login to http://localhost:3000 with your new test user:

        lobsters$ rails server