link aggregator for the tildeverse https://tilde.news
Go to file
Abdullah Samman 92a768e604 make `rails test` run `rails spec` instead
Fix #585
2018-11-26 18:42:01 -06:00
.github housekeeping 2018-04-19 05:37:18 -05:00
app add rubocop cop to prevent the safe navigation operator 2018-11-24 16:41:09 -06:00
bin rails 5.2 upgrade 2018-06-14 10:17:19 -05:00
config Fix typo 2018-10-20 19:01:09 -05:00
db ok, it's come up at least four times now 2018-11-08 08:13:05 -06:00
extras whitespace; shallow name 2018-11-24 16:43:43 -06:00
lib don't 500 if a user banned/deleted before server move tries to log in 2018-11-08 10:56:20 -06:00
public operational wording of error messages on HTTP error pages. 2018-11-07 07:42:45 -06:00
script name exceptions so we can ignore most of them 2018-11-20 08:18:10 -06:00
spec fix #similar_stories to not include merged stories 2018-11-21 21:06:30 -06:00
test make `rails test` run `rails spec` instead 2018-11-26 18:42:01 -06:00
vendor/assets upgrade to rails v4.0.2 2013-12-30 17:40:52 -05:00
.gitignore generate sitemaps 2018-07-31 22:05:11 -05:00
.rspec housekeeping 2018-04-19 05:37:18 -05:00
.rubocop.yml warn against style churn because folks aren't seeing #460 2018-11-26 18:12:40 -06:00
.ruby-version ruby-version: bump to 2.3.3 which is running in production 2017-06-07 11:50:50 -05:00
.travis.yml rubocop recommends not requiring it in Gemfile 2018-03-21 16:42:36 -05:00
CONTRIBUTING.md Update CONTRIBUTING.md 2018-09-24 14:05:00 -05:00
Gemfile Switch to database cleaner approach for cleaning up test data 2018-11-07 07:45:02 -06:00
Gemfile.lock bundle update 2018-11-19 20:40:37 -06:00
LICENSE bump year, note contributors 2018-06-01 18:06:35 -05:00
README.md It's now 'rails', not 'rake' 2018-10-11 13:31:54 -05:00
Rakefile only load rubocop rake tasks in dev/test 2018-04-04 08:16:06 -05:00
config.ru rubocop: Layout/ExtraSpacing, 142 2018-03-19 10:00:27 -05:00

README.md

Lobsters Rails Project Build Status

This is the quite sad source code to the site operating at https://lobste.rs. It is a Rails 5 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

Use the steps below for a local install or lobsters-ansible for our production deployment config. There's an external project docker-lobsters if you want to use Docker.

  • Install Ruby 2.3.

  • Checkout the lobsters git tree from Github

    $ git clone git://github.com/lobsters/lobsters.git
    $ cd lobsters
    lobsters$
    
  • Install Nodejs, needed (or other execjs) for uglifier

    Fedora: sudo yum install nodejs
    Ubuntu: sudo apt-get install nodejs
    OSX: brew install nodejs
    
  • 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. You will also want a separate database for running tests:

    development:
      adapter: mysql2
      encoding: utf8mb4
      reconnect: false
      database: lobsters_dev
      socket: /tmp/mysql.sock
      username: *dev_username*
      password: *dev_password*
    
    test:
      adapter: mysql2
      encoding: utf8mb4
      reconnect: false
      database: lobsters_test
      socket: /tmp/mysql.sock
      username: *test_username*
      password: *test_password*
    
  • Load the schema into the new database:

    lobsters$ rails db:schema:load
    
  • 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, the inactive-user, and at least one tag:

    lobsters$ rails db:seed
    
  • On your personal computer, you can add some sample data and run the Rails server in development mode. You should be able to login to http://localhost:3000 with your new test user:

    lobsters$ rails fake_data
    lobsters$ rails server
    
  • Deploying the site in production requires setting up a web server and running the app in production mode. There are more tools and options available than we can describe; find a guide or an expert. The lobsters-ansible repo has our config files to crib from. Some app-specific notes:

  • 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'
    
  • See config/initializers/production.rb.sample for GitHub/Twitter integration help.

Administration

Basic moderation happens on-site, but most other administrative tasks require use of the rails console in production. Administrators can create and edit tags at /tags.