link aggregator for the tildeverse https://tilde.news
You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
Go to file
Ben Harris 87e8637524
Merge branch 'lobsters:master' into master
4 weeks ago
.github Fix fake_data task; add CI test for it (#1087) 1 year ago
app Merge branch 'lobsters:master' into master 4 weeks ago
bin bump deps for cve, rubocop 1 year ago
config Merge branch 'lobsters:master' into master 4 weeks ago
db tilde.news customizations 7 months ago
extras archive_url doesn't exist, use story.archiveorg_url 7 months ago
fixtures/vcr_cassettes fix keybase spec 3 years ago
lib wrong place 10 months ago
public tilde.news customizations 7 months ago
script cron job to fill flagged commenters cache 9 months ago
spec Add youtube duplicate detection (#1174) 1 month ago
test fix 92a768e 5 years ago
vendor/assets Backport unreleased fix for Tom select 8 months ago
.gitignore tilde.news customizations 7 months ago
.rspec housekeeping 5 years ago
.rubocop.yml bump commonmarker; rubocop 1 year ago
.ruby-version Ruby 2.7 and bundle update 3 years ago
.ruumba.yml Migrate deprecated form_tag and form_for to form_with 5 years ago
CONTRIBUTING.md redorder to read better 2 years ago
Gemfile bump rails for CVE-2023-28120 2 months ago
Gemfile.lock bump rails for CVE-2023-28120 2 months ago
LICENSE bump copyright year 4 years ago
README.md Fix fake_data task; add CI test for it (#1087) 1 year ago
Rakefile only load rubocop rake tasks in dev/test 5 years ago
SECURITY.md create SECURITY.md (#1107) 11 months ago
config.ru rubocop: Layout/ExtraSpacing, 142 5 years ago

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.

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 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
    
  • 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).

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

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