link aggregator for the tildeverse https://tilde.news
Go to file
Adam Hess 0cb4048dd6 update rspec syntax (#366)
the :should syntax is no longer supported. Now we use the modern :expect syntax
2017-06-13 10:10:02 -05:00
app css: fix highlighting of collapsed comments 2017-06-11 17:02:27 -05:00
bin upgrade to rails v4.0.2 2013-12-30 17:40:52 -05:00
config config: adjust logs to have uuid prepended, remove timestamp 2017-06-07 15:51:42 -05:00
db Search: drop sphinx for searching, use sql fulltext 2017-06-07 15:59:54 -05:00
extras countinual: new ip for api.countinual.com 2017-06-07 15:51:42 -05:00
lib Add task to generate test data 2014-07-07 12:15:28 +04:00
public robots: tell spiders not to crawl pages 2017-06-05 11:18:43 -05:00
script post_to_twitter: require at least an upvote 2017-06-11 17:03:54 -05:00
spec update rspec syntax (#366) 2017-06-13 10:10:02 -05:00
vendor/assets upgrade to rails v4.0.2 2013-12-30 17:40:52 -05:00
.gitignore layout: if layouts/_footer exists, use it instead 2017-05-09 18:24:58 -05:00
.rspec Refactor HomeController 2014-07-09 22:25:39 +04:00
.ruby-version ruby-version: bump to 2.3.3 which is running in production 2017-06-07 11:50:50 -05:00
CONTRIBUTING.md fix markdown 2017-04-13 13:14:24 -05:00
Gemfile Search: drop sphinx for searching, use sql fulltext 2017-06-07 15:59:54 -05:00
Gemfile.lock Search: drop sphinx for searching, use sql fulltext 2017-06-07 15:59:54 -05:00
LICENSE Update copyright to year 2017 (#336) 2017-01-19 10:04:20 -06:00
README.md README: no more sphinx 2017-06-07 16:04:00 -05: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.

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 2.3.

  • 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'
    
  • 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
    
  • Put your site's custom CSS in app/assets/stylesheets/local.

  • 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
    
  • In production, set up crontab or another scheduler to run regular jobs:

        */5 * * * *  cd /path/to/lobsters && env RAILS_ENV=production sh -c 'bundle exec ruby script/mail_new_activity; bundle exec ruby script/post_to_twitter'