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

only require server.rb in the server scripts

Changed files
-4
app
-4
app/config.rb
··· 3 3 require 'blue_factory' 4 4 require 'sinatra/activerecord' 5 5 6 - require_relative 'server' 7 - 8 6 ActiveRecord::Base.connection.execute "PRAGMA journal_mode = WAL" 9 7 10 8 BlueFactory.set :publisher_did, 'did:plc:<your_identifier_here>' ··· 13 11 BlueFactory.add_feed 'build', BuildInPublicFeed.new 14 12 BlueFactory.add_feed 'linux', LinuxFeed.new 15 13 BlueFactory.add_feed 'starwars', StarWarsFeed.new 16 - 17 - Server.configure