link aggregator for the tildeverse https://tilde.news
Go to file
Thomas Dziedzic b32bac90b4 fix keybase spec 2020-06-13 02:12:49 +00:00
.github update issue/pr templates 2020-02-05 09:26:46 -06:00
app clean up mysqlism 2020-06-08 18:49:10 -05:00
bin prod tweaks 2020-05-31 22:21:35 -05:00
config rubocop 2020-06-01 20:28:12 -05:00
db fix indexing for newest comments 2020-06-07 14:35:15 -05:00
extras Ruby 2.7 and bundle update 2020-05-18 23:20:03 -05:00
fixtures/vcr_cassettes fix keybase spec 2020-06-13 02:12:49 +00:00
lib fix fake_data failed at User.is_new? validator (#824) 2020-03-02 18:49:29 -08:00
public Replace link to IRC channel in 500 error message 2020-03-29 10:47:48 -06:00
script Make mail_new_activity no-op silently (#732) 2019-09-11 07:03:10 -07:00
spec fix keybase spec 2020-06-13 02:12:49 +00:00
test fix 92a768e 2018-11-26 18:44:44 -06:00
vendor/assets upgrade to rails v4.0.2 2013-12-30 17:40:52 -05:00
.gitignore Add keybase integration (#661) 2019-06-12 06:08:57 -07:00
.rspec housekeeping 2018-04-19 05:37:18 -05:00
.rubocop.yml bump rails; rubocop cleanup 2020-05-18 19:28:26 -05:00
.ruby-version Ruby 2.7 and bundle update 2020-05-18 23:20:03 -05:00
.ruumba.yml Migrate deprecated form_tag and form_for to form_with 2018-12-09 09:51:30 -06:00
.travis.yml add bundler-leak to build 2019-10-27 22:39:27 -05:00
CONTRIBUTING.md note about running ruumba 2018-12-09 07:53:47 -08:00
Gemfile fix keybase spec 2020-06-13 02:12:49 +00:00
Gemfile.lock fix keybase spec 2020-06-13 02:12:49 +00:00
LICENSE bump copyright year 2019-06-22 22:11:33 +02:00
README.md Typo: replaced a dot with a slash (#720) 2019-08-11 20:15:05 -07: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.

You are free to use this code to start your own sister site because the code is available under a permissive license (3-clause BSD). We welcome bug reports and code contributions that help use improve lobste.rs. As a volunteer project we're reluctant to take on work that's not useful to our site, so please understand if we don't want to adopt your custom feature.

2019-05-29 experiment: Are you interested in running your own sister site and not technical, or otherwise willing to pay for hosting/support? Maybe you're a Reddit community unhappy with their redesign, want an internal site for your company, or want to experiement with community design? Please contact Peter (email that name @push.cx). I'm exploring the idea of a hosting company to run sites using the codebase, or maybe consulting on custom features, and would love to hear from you. (The only change to Lobsters would be that someone's getting paid to PR back bug fixes.)

Contributing bugfixes and new features

We'd love to have your help. Please see the CONTRIBUTING file for details.

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
    
    • If when installing the mysql2 gem on macOS, you see ld: library not found for -l-lpthread in the output, see this solution for a fix. You might also see ld: library not found for -lssl if you're using macOS 10.4+ and Homebrew openssl, in which case see this solution.
  • 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
    
  • On your production server, copy config/initializers/production.rb.sample to config/initalizers/production.rb and customize it with your site's domain and name. (You don't need this on your dev machine).

  • 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; bundle exec ruby script/traffic_range'
    
  • 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.