All Projects → lobsters → Lobsters

lobsters / Lobsters

Licence: other
Computing-focused community centered around link aggregation and discussion

Programming Languages

ruby
36898 projects - #4 most used programming language
HTML
75241 projects
javascript
184084 projects - #8 most used programming language
CSS
56736 projects

Projects that are alternatives of or similar to Lobsters

Homeland
🎪 An open source forum/community system based on Rails, developed based on Ruby China.
Stars: ✭ 3,511 (+12.82%)
Mutual labels:  forum, rails
Discourse
A platform for community discussion. Free, open, simple.
Stars: ✭ 34,626 (+1012.66%)
Mutual labels:  forum, rails
Sugar
Totally sweet Ruby on Rails-based forum software
Stars: ✭ 114 (-96.34%)
Mutual labels:  forum, rails
Tomo
A friendly CLI for deploying Rails apps ✨
Stars: ✭ 260 (-91.65%)
Mutual labels:  rails
Putsreq
PutsReq lets you record HTTP requests and fake responses like no other tool available
Stars: ✭ 262 (-91.58%)
Mutual labels:  rails
Consul
Scope-based authorization for Ruby on Rails.
Stars: ✭ 268 (-91.39%)
Mutual labels:  rails
Go On Rails
🚄 Use Rails to Develop or Generate a Golang Application.
Stars: ✭ 275 (-91.16%)
Mutual labels:  rails
Email inquire
Validate email for common typos and one-time email providers
Stars: ✭ 257 (-91.74%)
Mutual labels:  rails
Vue Turbolinks
A Vue mixin to fix Turbolinks caching
Stars: ✭ 272 (-91.26%)
Mutual labels:  rails
Material icons
A simple Rails wrapper for Google Material Icons
Stars: ✭ 266 (-91.45%)
Mutual labels:  rails
Role core
🔐A Rails engine providing essential industry of Role-based access control.
Stars: ✭ 262 (-91.58%)
Mutual labels:  rails
Feedbin
A nice place to read on the web.
Stars: ✭ 2,910 (-6.49%)
Mutual labels:  rails
Elasticsearch Rails
Elasticsearch integrations for ActiveModel/Record and Ruby on Rails
Stars: ✭ 2,896 (-6.94%)
Mutual labels:  rails
Clowne
A flexible gem for cloning models
Stars: ✭ 260 (-91.65%)
Mutual labels:  rails
Letters
A tiny debugging library for Ruby
Stars: ✭ 273 (-91.23%)
Mutual labels:  rails
Crystalball
Regression Test Selection library for your RSpec test suite
Stars: ✭ 259 (-91.68%)
Mutual labels:  rails
Alonetone
A free, open source, non-commercial home for musicians and their music
Stars: ✭ 270 (-91.32%)
Mutual labels:  rails
Rails kindeditor
Kindeditor for Ruby on Rails
Stars: ✭ 263 (-91.55%)
Mutual labels:  rails
Portus
Authorization service and frontend for Docker registry (v2)
Stars: ✭ 2,880 (-7.46%)
Mutual labels:  rails
Thinreports Generator
Report Generator for Ruby
Stars: ✭ 268 (-91.39%)
Mutual labels:  rails

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.

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

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

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].