Skip to content

SeleniumHQ/selbot2

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b73a1f0 · May 31, 2023
May 24, 2021
May 24, 2021
Sep 20, 2013
May 13, 2015
Sep 30, 2015
Oct 16, 2019
May 31, 2023
May 31, 2023
Sep 30, 2015
Sep 2, 2016
Sep 20, 2013

Repository files navigation

Selbot2

IRC bot for the #selenium channel on freenode.

Database

The bot utilizes a PostgreSQL database for persisting data. Follow the installation guides for help getting setup locally.

A database needs to be created and the DATABASE_URL environment variable needs to be set. Typically, localhost is used for development:

DATABASE_URL=postgres://localhost/database

For use in production, the url should be in the form:

DATABASE_URL=postgres://user:password@host:port/database

Required tables will be genereted automatically by the app.

Startup

To run the bot locally, try:

$ bundle install
$ SELBOT_CHANNEL=#my-test-channel bundle exec ruby -I lib bin/selbot2.rb

Note that startup is for unknown reasons quite slow. Disabling plugins may or may not help this.

In production, use:

$ OPEN_ISSUE_INTERVAL=1800 bundle exec ruby -Ilib bin/selbot2.rb

For use with youtube one needs to create an API Key and set that as "youtube.conf" environment variable.