No commit activity in last 3 years
No release in over 3 years
A huginn agent for writing data to SQLite3 databases
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
 Dependencies

Development

~> 1.7
~> 10.0

Runtime

 Project Readme

SQLite3 Agent

This gem provides an agent for Huginn which provides an easy interface for writing to SQLite 3 databases.

For detailed instructions on its usage, please see the Markdown description within the agent's source (which will also be displayed in your Huginn dashboard).

Installation

Like any other Huginn agent, you may install this agent by adding thw following to your .env file:

ADDITIONAL_GEMS=huginn_sqlite3_agent

or, if you wish to stay on the bleeding edge:

ADDITIONAL_GEMS=huginn_sqlite3_agent(git:https://github.com/stevenleeg/huginn_sqlite3_agent.git)

Note that this gem relies on the sqlite3 gem which itself requires SQLite3 development headers. If you're running Huginn on a regular server, satisfying this requirement may be as simple as running apt install libsqlite3-dev (or whatever your distro's equivilent may be). For those of you running Huginn via Docker, you may need to build a custom image in order to get this running. Not to fear though, this isn't too hard:

FROM huginn/huginn

USER root
RUN apt-get update && apt-get install -y libsqlite3-dev

USER 1001

You can then build the image with:

docker build -t custom-huginn .