examples/basic_host/README.md
This template creates a Rails 8 application that mounts the SourceMonitor engine, installs its migrations, seeds a demo source, and redirects the root path to the dashboard.
rbenv exec rails new source_monitor_basic \
--main \
--database=postgresql \
--skip-jbuilder \
--skip-hotwire \
-m ../path/to/examples/basic_host/template.rb
Replace ../path/to with the relative path from the directory where you run rails new.
source_monitor:install, copies migrations, and executes db:prepare.Procfile.dev./source_monitor.cd source_monitor_basiccp config/database.yml config/database.local.yml and adjust credentials if needed.bin/setupbin/devOnce the worker fetches the seeded source, open http://localhost:3000/source_monitor to browse items.
config/initializers/source_monitor.rb to change queue names, HTTP timeouts, or scraping defaults.db/seeds.rb.