link aggregator for the tildeverse https://tilde.news
Go to file
dependabot[bot] 8062d62cb6
Bump mysql2 from 0.4.10 to 0.5.0
Bumps [mysql2](https://github.com/brianmario/mysql2) from 0.4.10 to 0.5.0.
- [Release notes](https://github.com/brianmario/mysql2/releases)
- [Changelog](https://github.com/brianmario/mysql2/blob/master/CHANGELOG.md)
- [Commits](https://github.com/brianmario/mysql2/compare/0.4.10...0.5.0)

Signed-off-by: dependabot[bot] <support@dependabot.com>
2018-03-21 18:54:32 +00:00
.github add issue template for github 2017-08-31 09:01:56 -05:00
app don't give author bump without an author link 2018-03-21 13:48:37 -05:00
bin Upgrade rails 5 1 (#367) 2017-06-18 11:04:32 -05:00
config move replies filters to url path; remove 1 + n on unread tracking 2018-01-31 08:21:11 -06:00
db fix create_view in schema.rb 2018-02-09 08:46:08 -06:00
extras remove dead Countinual code 2017-11-27 10:16:18 -05:00
lib Add text-only stories to fake_data task 2017-11-28 10:41:58 -05:00
public robots: tell spiders not to crawl pages 2017-06-05 11:18:43 -05:00
script ignore an intermittent twitter bug 2018-02-26 13:34:30 -06:00
spec add tag scoped search 2018-03-13 11:55:11 -06:00
vendor/assets upgrade to rails v4.0.2 2013-12-30 17:40:52 -05:00
.gitignore gitignore: ignore public/avatars 2017-08-31 08:59:05 -05:00
.rspec Refactor HomeController 2014-07-09 22:25:39 +04: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 Show story and comment replies, tracking unread ones 2018-01-31 07:43:07 -06:00
CONTRIBUTING.md fix issue label, link issues 2017-10-25 03:31:52 -04:00
Gemfile Bump mysql2 from 0.4.10 to 0.5.0 2018-03-21 18:54:32 +00:00
Gemfile.lock Bump mysql2 from 0.4.10 to 0.5.0 2018-03-21 18:54:32 +00:00
LICENSE Update copyright to year 2017 (#336) 2017-01-19 10:04:20 -06:00
README.md Allow deleting users to disown their comments 2018-01-29 13:03:45 -06:00
Rakefile upgrade to rails v4.0.2 2013-12-30 17:40:52 -05:00
config.ru upgrade to rails v4.0.2 2013-12-30 17:40:52 -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

  • 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$ rake db:schema:load
    
  • Create a config/initializers/secret_token.rb file, using a randomly generated key from the output of rake secret:

    Lobsters::Application.config.secret_key_base = 'your random secret here'
    
  • 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$ rake db:seed
    
  • 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
    
  • In production, 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'