A web application for searching your Quassel database.
It's recommended to setup a Postgresql user with read-only access to the Quassel database.
- Run
psql
as the admin user and open thequassel
database:sudo -u postgres psql quassel
- Run the following SQL query:
`CREATE USER querryl WITH PASSWORD 'secure-password';
- Give the new user read-only access to the tables:
GRANT SELECT ON ALL TABLES IN SCHEMA public TO querryl;
pip install git+git://github.com/ddormer/Querryl
cd Querryl
cp config.py.sample config.py
- Edit
config.py
to fit your needs. trial querryl
twistd -n quassel