link aggregator for the tildeverse https://tilde.news
Go to file
Peter Bhat Harkins 1f4547d2b9 automate a bit with bin/setup 2023-12-06 08:50:04 -06:00
.github automate a bit with bin/setup 2023-12-06 08:50:04 -06:00
app Remove unused css 2023-12-05 12:09:14 -05:00
bin automate a bit with bin/setup 2023-12-06 08:50:04 -06:00
config enable page caching 2023-10-06 22:28:16 -05:00
db missing migration in schema; standardrb generated file 2023-11-22 11:17:57 -06:00
extras standardrb: add standard-sorbet 2023-09-14 08:45:21 -05:00
fixtures/vcr_cassettes fix keybase spec 2020-06-13 02:12:49 +00:00
lib standardrb: add standard-sorbet 2023-09-14 08:45:21 -05:00
public placeholder for lobsters.dev 2023-10-04 12:20:00 -05:00
script wrap message IDs with <> in References header; #1227 2023-12-04 09:26:36 -06:00
spec missing migration in schema; standardrb generated file 2023-11-22 11:17:57 -06:00
test standardrb: add standard-sorbet 2023-09-14 08:45:21 -05:00
vendor/assets Backport unreleased fix for Tom select 2022-09-28 08:31:14 -05:00
.git-blame-ignore-revs git config --global blame.ignoreRevsFile .git-blame-ignore-revs 2023-09-08 17:32:57 -05:00
.gitignore extract about pgaes to own controller 2022-02-19 18:45:30 -06:00
.rspec housekeeping 2018-04-19 05:37:18 -05:00
.ruby-version standardrb 2023-09-08 15:39:50 -05:00
.standard.yml standardrb: add standard-performance 2023-09-14 08:45:21 -05:00
CONTRIBUTING.md remove last vestiges of rubocop 2023-09-14 08:45:21 -05:00
Gemfile add super_diff for better test output 2023-10-04 08:31:39 -05:00
Gemfile.lock add super_diff for better test output 2023-10-04 08:31:39 -05:00
LICENSE bump copyright year 2019-06-22 22:11:33 +02:00
README.md automate a bit with bin/setup 2023-12-06 08:50:04 -06:00
Rakefile remove last vestiges of rubocop 2023-09-14 08:45:21 -05:00
SECURITY.md create SECURITY.md (#1107) 2022-07-08 13:37:52 +00:00
config.ru standardrb: add standard-sorbet 2023-09-14 08:45:21 -05:00

README.md

Lobsters Rails Project build status

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

Contributing bugfixes and new features

We'd love to have your help. Please see the CONTRIBUTING file for details. If you have questions, there is usually someone in our chat room who's familiar with the code.

Development 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 the Ruby version specified in .ruby-version

  • 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
    
  • Create a MariaDB (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*
    
  • Run bin/setup to install dependencies and set up db

    lobsters$ bin/setup
    
    • 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.
  • 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).

  • On your personal computer, you probably want to add some sample data.

    lobsters$ rails fake_data
    
  • 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
    
  • 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.

  • You probably want to use git-imerge to pull in changes from Lobsters to your site.

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.