Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/lobsters/lobsters
Computing-focused community centered around link aggregation and discussion
https://github.com/lobsters/lobsters
aggregator forum hacktoberfest rails ruby
Last synced: 7 days ago
JSON representation
Computing-focused community centered around link aggregation and discussion
- Host: GitHub
- URL: https://github.com/lobsters/lobsters
- Owner: lobsters
- License: other
- Created: 2012-08-24T16:48:03.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2025-01-26T21:15:59.000Z (15 days ago)
- Last Synced: 2025-01-28T11:22:03.750Z (14 days ago)
- Topics: aggregator, forum, hacktoberfest, rails, ruby
- Language: Ruby
- Homepage: https://lobste.rs
- Size: 6.33 MB
- Stars: 4,182
- Watchers: 66
- Forks: 847
- Open Issues: 140
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Security: SECURITY.md
Awesome Lists containing this project
- awesome-starred-test - lobsters/lobsters - Computing-focused community centered around link aggregation and discussion (Ruby)
- awesome-list - lobsters - focused community centered around link aggregation and discussion | lobsters | 3022 | (Ruby)
- awesome - Lobsters
- Open-Source-Ruby-and-Rails-Apps - Lobsters - Computing-focused community centered around link aggregation and discussion 🔥 ✅ 🚀 (Happy Exploring 🤘)
- awesome-homelab - Lobsters - focused community centered around link aggregation and discussion | (Apps / X)
- awesome-starred - lobsters/lobsters - Computing-focused community centered around link aggregation and discussion (ruby)
README
### Lobsters Rails Project [![build status](https://github.com/lobsters/lobsters/actions/workflows/check.yml/badge.svg)](https://github.com/lobsters/lobsters/actions/workflows/check.yml)
This is the
[quite sad](https://web.archive.org/web/20230213161624/https://old.reddit.com/r/rails/comments/6jz7tq/source_code_lobsters_a_hacker_news_clone_built/)
source code to the
[ghost town](https://xcancel.com/webshitweekly/status/1399935275057389571) at
[https://lobste.rs](https://lobste.rs)
It is a Rails codebase and uses a SQL (MariaDB in production) backend for the database.
([No relation](https://lobste.rs/about#michaelbolton) to the self-help guru.)You are free to use this code to start your own [sister site](https://github.com/lobsters/lobsters/wiki)
because the code is available under a [permissive license](https://github.com/lobsters/lobsters/blob/master/LICENSE) (3-clause BSD).
We welcome bug reports and code contributions that help use improve [lobste.rs](https://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.As of February 2025 we have a [Zulip-based chat room]() to discuss the codebase and offer limited support to owners of sister sites like warnings about breaking changes and vulnerability announcements.
If you run a site using the codebase, you will benefit from joining!#### Contributing bugfixes and new features
We'd love to have your help.
Please see the [CONTRIBUTING](https://github.com/lobsters/lobsters/blob/master/CONTRIBUTING.md) file for details.
If you have questions, there is usually someone in [our chat room](https://lobste.rs/chat) who's familiar with the code.Lobsters is a volunteer project with limited development time and a long time horizon, we hope to be running for decades.
So our design philosophy is a little different than a typical commercial product:* We started with Rails 3.2.2 in 2012, so we have a few dusty corners and places where we don't take advantage of features that were introduced since we started.
* We lean into using Rails features instead of custom code, and we'll write a couple dozen lines of narrow code for a feature rather than add a dependency that might require maintenance.
* We are especially reluctant to add new production services like queues, caches, and databases. We have almost eliminated third-party dependencies from production.
* We test to ensure functionality, but testing is a lot lighter for moderator and other non-core features.
We're trying to maximize the return on investment of testing rather than minimize errors.
* We're willing to take downtime for big code changes rather than try to make them seamless.#### Development setup
Use the steps below for a local install or
[lobsters-ansible](https://github.com/lobsters/lobsters-ansible) for our production deployment config.
There's an external project [docker-lobsters](https://github.com/utensils/docker-lobsters) if you want to use Docker.* Install and start MariaDB.
On Linux use [your package manager](https://mariadb.com/kb/en/distributions-which-include-mariadb/).
On MacOS you can [install with brew](https://mariadb.com/kb/en/installing-mariadb-on-macos-using-homebrew/).
On Windows there's an [installer](https://mariadb.org/download/?t=mariadb&p=mariadb&r=11.5.2&os=Linux&cpu=x86_64&pkg=tar_gz&i=systemd&mirror=starburst_stlouis).* Start the mariadb server using one of the [methods mentioned in the mariadb knowledge base](https://mariadb.com/kb/en/starting-and-stopping-mariadb-automatically/).
* Open the console using `mariadb`, and set the `root` user password (type `ctrl-d` to exit afterwards)
```sql
ALTER USER 'root'@'localhost' IDENTIFIED BY 'localdev';
```* Install the Ruby version specified in [.ruby-version](https://github.com/lobsters/lobsters/blob/master/.ruby-version)
* Checkout the lobsters git tree from Github
```sh
$ git clone [email protected]:lobsters/lobsters.git
$ cd lobsters
lobsters$
```
* Run `rails credentials:edit` to create and edit your encrypted credentials file.
This is where you store API keys for external services and features like linking accounts.
Copy and paste the contents of `config/credentials.yml.enc.sample` in.
On setup, Rails will give you new random value for `secret_key_base` and you can use `rails secret` any time you need to generate another.* Run `bin/setup` to install dependencies and set up db
```sh
lobsters$ bin/setup
```* 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.
```sh
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:```sh
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/mastodon_sync.rb; bundle exec ruby script/traffic_range'
```* On production, run `rails credentials:edit` to set up the credentials there,
like you did for development.
On setup, Rails will give you new random value for `secret_key_base` and you can use `rails secret` any time you need to generate another.
Never `git commit` or share your `config/credentials.yml.enc`!* You probably want to use [git-imerge](https://lobste.rs/s/dbm2d4) to pull in
changes from Lobsters to your site.#### Administration
Basic moderation happens on-site, but many administrative tasks require use of the rails console in production.
Administrators can create and edit tags at `/tags`.