Template of a custom feed generator service for the Bluesky network in Ruby
3
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 5ed0bdd6fbd4927ddbd9c93554bfc3382a44c77d 13 lines 221 B view raw
1#!/usr/bin/env ruby 2 3$LOAD_PATH.unshift(File.expand_path('..', __dir__)) 4 5require 'bundler/setup' 6 7require 'app/config' 8require 'app/server' 9 10Server.configure 11 12BlueFactory::Server.set :port, 3000 13BlueFactory::Server.run!