Template of a custom feed generator service for the Bluesky network in Ruby
at master 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!