<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Importers?]]></title><description><![CDATA[<p dir="auto">Are there any packaged / bundled importers for the Cloudron FF3 app? I'm not finding any instructions for that, but I'm also new to Firefly.</p>
]]></description><link>https://forum.cloudron.io/topic/2779/importers</link><generator>RSS for Node</generator><lastBuildDate>Sat, 15 Aug 2026 10:38:02 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/2779.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 05 Jul 2020 21:33:06 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Importers? on Fri, 13 May 2022 11:04:48 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/colonelpanic" aria-label="Profile: colonelpanic">@<bdi>colonelpanic</bdi></a> thank you!!</p>
]]></description><link>https://forum.cloudron.io/post/47816</link><guid isPermaLink="true">https://forum.cloudron.io/post/47816</guid><dc:creator><![CDATA[jagadeesh-s2104]]></dc:creator><pubDate>Fri, 13 May 2022 11:04:48 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Mon, 09 May 2022 15:23:56 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/jagadeesh-s2104" aria-label="Profile: jagadeesh-s2104">@<bdi>jagadeesh-s2104</bdi></a> - Great question. It looks you can map a volume between the docker container and the host. So anything you put in that folder would be picked up and imported. Here is an updated docker-compose with the volume section in the yaml:</p>
<pre><code>version: '3'

services:
  app:
    image: fireflyiii/data-importer:latest
    container_name: firefly-iii-data-importer
    restart: unless-stopped
    environment:
      # See https://docs.firefly-iii.org/data-importer/install/configure/
      - FIREFLY_III_URL=https://sub.domain.tld
      - VANITY_URL=https://sub.domain.tld
      - FIREFLY_III_ACCESS_TOKEN=ey...........
    volumes:
      - /home/colonelpanic/fireflyiii-importer/csvdrop:/import
    ports:
      - 8081:8080
</code></pre>
<p dir="auto">This option is outlined in their docs here - <a href="https://docs.firefly-iii.org/data-importer/usage/command_line/" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.firefly-iii.org/data-importer/usage/command_line/</a></p>
<p dir="auto">It looks like you could also setup a cron job that use a POST request. Docs on that here - <a href="https://docs.firefly-iii.org/data-importer/usage/post/" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.firefly-iii.org/data-importer/usage/post/</a></p>
]]></description><link>https://forum.cloudron.io/post/47477</link><guid isPermaLink="true">https://forum.cloudron.io/post/47477</guid><dc:creator><![CDATA[colonelpanic]]></dc:creator><pubDate>Mon, 09 May 2022 15:23:56 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Sun, 01 May 2022 13:59:38 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/colonelpanic" aria-label="Profile: colonelpanic">@<bdi>colonelpanic</bdi></a> Thank you!! Is there a way to schedule it to run daily or something to pull the data?</p>
]]></description><link>https://forum.cloudron.io/post/46930</link><guid isPermaLink="true">https://forum.cloudron.io/post/46930</guid><dc:creator><![CDATA[jagadeesh-s2104]]></dc:creator><pubDate>Sun, 01 May 2022 13:59:38 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Wed, 19 Jan 2022 20:24:15 GMT]]></title><description><![CDATA[<p dir="auto">The Firefly III Data Importer does not require any authentication to use. This means anyone with the URL can start importing CSV files.</p>
<p dir="auto">I run the <code>fireflyiii/data-importer</code> container on a separate server with Traefik as the reverse proxy and Authelia (for ForwardAuth) to force logging in. This is probably overkill for a single user and why I recommend just running this from your workstation. Docker and docker-compose need to be installed.</p>
<p dir="auto">Copy the docker-compose yaml below and enter your environment variables. Save it in a folder on your workstation.</p>
<p dir="auto"><code>docker-compose.yml:</code></p>
<pre><code>version: '3'

services:
  app:
    image: fireflyiii/data-importer:latest
    container_name: firefly-iii-data-importer
    restart: unless-stopped
    environment:
      # See https://docs.firefly-iii.org/data-importer/install/configure/
      - FIREFLY_III_URL=https://sub.domain.tld
      - VANITY_URL=https://sub.domain.tld
      - FIREFLY_III_ACCESS_TOKEN=ey...........
      #- FIREFLY_III_CLIENT_ID=
      #- NORDIGEN_ID=
      #- NORDIGEN_KEY=
      #- SPECTRE_APP_ID=
      #- SPECTRE_SECRET=
    ports:
      - 8081:8080
</code></pre>
<p dir="auto">Once you've modified the file with all of your environment variables you just need to navigate to the folder containing the docker-compose file in a terminal and run <code>docker-compose up -d</code>. This will start the container in detached mode. Once it is up and running you can access the data-importer at <a href="http://localhost:8081/" target="_blank" rel="noopener noreferrer nofollow ugc">http://localhost:8081/</a></p>
<p dir="auto">When you're done importing you can go back to the directory with the docker-compose file and run <code>docker-compose down</code> to stop the container.</p>
<p dir="auto">I can share my Traefik labels for anyone interested in setting up Forward Auth through Authelia.</p>
<p dir="auto">Hope this helps!</p>
]]></description><link>https://forum.cloudron.io/post/42083</link><guid isPermaLink="true">https://forum.cloudron.io/post/42083</guid><dc:creator><![CDATA[colonelpanic]]></dc:creator><pubDate>Wed, 19 Jan 2022 20:24:15 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Wed, 19 Jan 2022 15:52:44 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/murgero" aria-label="Profile: murgero">@<bdi>murgero</bdi></a> sadly. I actually testing on using ERPnext for my invoicing, they do have bank integration with Plaid. I've requested similar integration in Invoice Ninja forum. Hope they'll integrate it someday <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=090c346130c" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":)" alt="🙂" /></p>
]]></description><link>https://forum.cloudron.io/post/42066</link><guid isPermaLink="true">https://forum.cloudron.io/post/42066</guid><dc:creator><![CDATA[Aizat]]></dc:creator><pubDate>Wed, 19 Jan 2022 15:52:44 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Sat, 15 Jan 2022 20:46:11 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/aizat" aria-label="Profile: aizat">@<bdi>aizat</bdi></a> I believe the feature was removed since my last comment</p>
]]></description><link>https://forum.cloudron.io/post/41881</link><guid isPermaLink="true">https://forum.cloudron.io/post/41881</guid><dc:creator><![CDATA[murgero]]></dc:creator><pubDate>Sat, 15 Jan 2022 20:46:11 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Sat, 15 Jan 2022 18:03:05 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/murgero" aria-label="Profile: murgero">@<bdi>murgero</bdi></a> HI, what do you mean by 3rd party importers? How does it work?</p>
]]></description><link>https://forum.cloudron.io/post/41879</link><guid isPermaLink="true">https://forum.cloudron.io/post/41879</guid><dc:creator><![CDATA[Aizat]]></dc:creator><pubDate>Sat, 15 Jan 2022 18:03:05 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Thu, 08 Oct 2020 02:56:02 GMT]]></title><description><![CDATA[<p dir="auto">I have opened up a <a href="https://forum.cloudron.io/topic/3338/spectre-importer">request</a> to get Spectre importer added as an app, please up vote if your still interested in that feature.</p>
]]></description><link>https://forum.cloudron.io/post/15116</link><guid isPermaLink="true">https://forum.cloudron.io/post/15116</guid><dc:creator><![CDATA[ChristopherMag]]></dc:creator><pubDate>Thu, 08 Oct 2020 02:56:02 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Tue, 07 Jul 2020 23:04:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/iamthefij" aria-label="Profile: iamthefij">@<bdi>iamthefij</bdi></a> Yes that is correct, but 3rd parties already run them so you don't have to like Salt Edge runs Spectre for example.</p>
]]></description><link>https://forum.cloudron.io/post/10368</link><guid isPermaLink="true">https://forum.cloudron.io/post/10368</guid><dc:creator><![CDATA[murgero]]></dc:creator><pubDate>Tue, 07 Jul 2020 23:04:04 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Tue, 07 Jul 2020 17:10:33 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/murgero" aria-label="Profile: murgero">@<bdi>murgero</bdi></a> Even the Spectre or Plaid importers require being run as separate services: <a href="https://github.com/firefly-iii/spectre-importer" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/firefly-iii/spectre-importer</a></p>
]]></description><link>https://forum.cloudron.io/post/10361</link><guid isPermaLink="true">https://forum.cloudron.io/post/10361</guid><dc:creator><![CDATA[iamthefij]]></dc:creator><pubDate>Tue, 07 Jul 2020 17:10:33 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Tue, 07 Jul 2020 03:50:04 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/iamthefij" aria-label="Profile: iamthefij">@<bdi>iamthefij</bdi></a> OH in that case i'd use something like Salt Edge / Spectre as they don't need to be hosted by you and are instead hosted by trusted parties to connect bank accounts.</p>
]]></description><link>https://forum.cloudron.io/post/10351</link><guid isPermaLink="true">https://forum.cloudron.io/post/10351</guid><dc:creator><![CDATA[murgero]]></dc:creator><pubDate>Tue, 07 Jul 2020 03:50:04 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Mon, 06 Jul 2020 17:54:15 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/murgero" aria-label="Profile: murgero">@<bdi>murgero</bdi></a> according to the docs, the importers are separate web applications that you host and connect to FF3. Given that Cloudron doesn't really support setting up auxiliary web applications on the box, it looks like the only way to use it would be for me to host the csv-importer on a different server and then direct that to my Cloudron FF3.</p>
<p dir="auto">Is that how others are using it?</p>
]]></description><link>https://forum.cloudron.io/post/10337</link><guid isPermaLink="true">https://forum.cloudron.io/post/10337</guid><dc:creator><![CDATA[iamthefij]]></dc:creator><pubDate>Mon, 06 Jul 2020 17:54:15 GMT</pubDate></item><item><title><![CDATA[Reply to Importers? on Mon, 06 Jul 2020 01:02:06 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/iamthefij" aria-label="Profile: iamthefij">@<bdi>iamthefij</bdi></a> AFAIK The importers that are supported can be used as-is, not installed as plugins:</p>
<p dir="auto"><a href="https://docs.firefly-iii.org/importing-data/introduction" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.firefly-iii.org/importing-data/introduction</a></p>
]]></description><link>https://forum.cloudron.io/post/10321</link><guid isPermaLink="true">https://forum.cloudron.io/post/10321</guid><dc:creator><![CDATA[murgero]]></dc:creator><pubDate>Mon, 06 Jul 2020 01:02:06 GMT</pubDate></item></channel></rss>