<?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[Custom Apps]]></title><description><![CDATA[<p dir="auto">Just to make sure I'm approaching this the correct way, I have a few questions.</p>
<p dir="auto">Our current nextcloud setup is using apache/mysql/php/redis.  I've brought up a NextCloud app on Cloudron and it is using postgres as it's database.  It seems like I could bring up a LAMP App and then install nextcloud on that stack and then configure it to use that database for the nextcloud database and then hook that install to the cloudron redis server.</p>
<p dir="auto">I arrived at this solution as I could not find a way to build a custom app and have it configured to create a database and a link to Redis.  I'm not sure if there is some documentation I have missed but I'd really love to just take your nextcloud app and adjust it's dockerfile to build the way I want (using mysql) but I don't see where it creates a database on postgres and creates redis credentials.  Is this done on cloudron's side during deployment?</p>
]]></description><link>https://forum.cloudron.io/topic/4365/custom-apps</link><generator>RSS for Node</generator><lastBuildDate>Mon, 13 Jul 2026 19:03:09 GMT</lastBuildDate><atom:link href="https://forum.cloudron.io/topic/4365.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 04 Feb 2021 18:07:55 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Custom Apps on Fri, 05 Feb 2021 19:04:32 GMT]]></title><description><![CDATA[<p dir="auto">One other note, the .sql file originally failed to upload due to the dump having the following line:</p>
<pre><code>Create SCHEMA public;
</code></pre>
<p dir="auto">I commented that out and the import ran fine.  I'm guessing there is a command to dump the Postgres DB without a create statement but someone smarter than me probably knows it.  I haven't used Postgres a day in my life until yesterday so I'm still getting to know it.  I have only used MySQL, Maria and MS SQL and all of those have an option to dump without the create statement, but I figured it was just easier to comment that line out of the SQL file instead of looking up the command and doing a new dump.</p>
]]></description><link>https://forum.cloudron.io/post/24973</link><guid isPermaLink="true">https://forum.cloudron.io/post/24973</guid><dc:creator><![CDATA[paul.toone]]></dc:creator><pubDate>Fri, 05 Feb 2021 19:04:32 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Fri, 05 Feb 2021 19:00:55 GMT]]></title><description><![CDATA[<p dir="auto">Just an update, I was able to get NextCloud converted over.  Dumping the existing mysql database with PostgreSQL compatibility did not work.  I'm next going to test out user mapping via cloudron LDAP and once that is complete I'll update all my notes into a more readable format.  But the process was essentially this:</p>
<ul>
<li>
<p dir="auto">Have a fresh NextCloud App running on Cloudron and immediately enter recovery mode</p>
</li>
<li>
<p dir="auto">Bring up a temporary machine running PostgreSQL</p>
</li>
<li>
<p dir="auto">Build pgloader on the temporary PostgreSQL Server</p>
<ul>
<li>sudo apt install sbcl unzip libsqlite3-dev gawk curl make freetds-dev libzip-dev</li>
<li>curl -fsSLO <a href="https://github.com/dimitri/pgloader/archive/v3.6.2.tar.gz" target="_blank" rel="noopener noreferrer nofollow ugc">https://github.com/dimitri/pgloader/archive/v3.6.2.tar.gz</a></li>
<li>tar xvf v3.6.2.tar.gz</li>
<li>cd pgloader-3.6.2/</li>
<li>make pgloader</li>
<li>sudo mv ./build/bin/pgloader /usr/local/bin/</li>
</ul>
</li>
<li>
<p dir="auto">Create a postgres user</p>
<ul>
<li>sudo -u postgres createuser --interactive -P</li>
<li>&lt;NewPostgresUser&gt;(username)</li>
<li>Set the password for this role &lt;NewPostgresPassword&gt;</li>
<li>Make the user a super user</li>
</ul>
</li>
<li>
<p dir="auto">Create an empty postgres DB</p>
<ul>
<li>sudo -u postgres createdb &lt;emptyDBName&gt;</li>
</ul>
</li>
<li>
<p dir="auto">Create a user on the MySQLDB and give it all privileges to the NextCloud DB</p>
<ul>
<li>mysql&gt; CREATE USER ‘&lt;someMySQLUserName&gt;’@’&lt;postgersServerIP’ IDENTIFIED BY ‘&lt;SomeMySQLUserPassword&gt;’</li>
<li>mysql&gt; GRANT ALL ON &lt;nextcloudDB&gt;.* to ‘&lt;someMySQLUserName&gt;’@’&lt;postgresServerIP&gt;’;</li>
<li>mysql&gt; flush privileges;</li>
</ul>
</li>
<li>
<p dir="auto">From the PostgreSQL Server ran pgloader</p>
<ul>
<li>pgloader mysql://&lt;someMySQLUserName&gt;:&lt;SomeMySQLUserPassword&gt;@mysql_server_ip/&lt;nextcloudDB&gt; postgresql://&lt;NewPostgresUser&gt;:&lt;NewPostgresPassword&gt;@localhost/&lt;emptyDBName&gt;</li>
</ul>
</li>
<li>
<p dir="auto">Dump the PostgreSQL Database</p>
<ul>
<li>pg_dump &lt;emptyDBName&gt; &gt; pgdump.sql</li>
</ul>
</li>
<li>
<p dir="auto">Get CLOUDRON_POSTGRESQL_USERNAME from the app container running the NextCloud APP.</p>
</li>
<li>
<p dir="auto">sed the .sql file and replace the schema with <strong>public</strong></p>
</li>
<li>
<p dir="auto">sed the .sql file and replace the &lt;table owners&gt; with CLOUDRON_POSTGRESQL_USERNAME</p>
</li>
<li>
<p dir="auto">Open a web terminal to the NextCloud App that is in recovery mode and upload the .sql file via the Upload to /tmp button</p>
</li>
<li>
<p dir="auto">Run the following commands grabbed from <a href="https://docs.cloudron.io/guides/import-postgresql/" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.cloudron.io/guides/import-postgresql/</a></p>
<ul>
<li>sed -e 's/CREATE EXTENSION/-- CREATE EXTENSION/g' -e 's/COMMENT ON EXTENSION/-- COMMENT ON EXTENSION/g' /tmp/pgdump.sql &gt; /tmp/pgdump_mod.sql</li>
<li>PGPASSWORD=${CLOUDRON_POSTGRESQL_PASSWORD} psql -h ${CLOUDRON_POSTGRESQL_HOST} -p ${CLOUDRON_POSTGRESQL_PORT} -U ${CLOUDRON_POSTGRESQL_USERNAME} -d ${CLOUDRON_POSTGRESQL_DATABASE} -c "DROP SCHEMA public CASCADE; CREATE SCHEMA public"</li>
<li>PGPASSWORD=${CLOUDRON_POSTGRESQL_PASSWORD} psql -h ${CLOUDRON_POSTGRESQL_HOST} -p ${CLOUDRON_POSTGRESQL_PORT} -U ${CLOUDRON_POSTGRESQL_USERNAME} -d ${CLOUDRON_POSTGRESQL_DATABASE} --set ON_ERROR_STOP=on --file=/tmp/pgdump_mod.sql</li>
</ul>
</li>
<li>
<p dir="auto">Move just the data from the old NextCloud server into the data directory of the NextCloud App on Cloudron. This is found in the app’s config page | Storage Section, should be something like:<br />
/home/yellowtent/appsdata/&lt;containerHash&gt;/data</p>
</li>
<li>
<p dir="auto">Bring the container out of recovery and boot up</p>
</li>
</ul>
<p dir="auto">Again, I'll update these notes if/when I try again and get cloudron's LDAP to map to the users in the database but for now, maybe these steps will help someone looking to convert and existing installation over to a Cloudron app.</p>
]]></description><link>https://forum.cloudron.io/post/24972</link><guid isPermaLink="true">https://forum.cloudron.io/post/24972</guid><dc:creator><![CDATA[paul.toone]]></dc:creator><pubDate>Fri, 05 Feb 2021 19:00:55 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 19:25:46 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/brutalbirdie" aria-label="Profile: brutalbirdie">@<bdi>brutalbirdie</bdi></a> Yeah, I'm concerned about this as well.  I'll definitely keep notes on the progress</p>
]]></description><link>https://forum.cloudron.io/post/24920</link><guid isPermaLink="true">https://forum.cloudron.io/post/24920</guid><dc:creator><![CDATA[paul.toone]]></dc:creator><pubDate>Thu, 04 Feb 2021 19:25:46 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 19:24:27 GMT]]></title><description><![CDATA[<p dir="auto">@paul-toone I thought a little about the import old DB.<br />
This will also import old users (I suppose?) and cloudron uses LDAP and I assume your old Nextcloud did not?<br />
Now "mapping" the old user/data to the Cloudron LDAP User?</p>
<p dir="auto"><img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f937.png?v=0a7c9407b89" class="not-responsive emoji emoji-android emoji--shrug" style="height:23px;width:auto;vertical-align:middle" title=":shrug:" alt="🤷" /></p>
<p dir="auto">I don't know how much is migrated from this but I fear when doing the DB import there are other things that might break as well.</p>
<p dir="auto">But if you do that, be sure to document your pain and findings here so other people in the future can benefit from your example.</p>
<p dir="auto"><img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f44d.png?v=0a7c9407b89" class="not-responsive emoji emoji-android emoji--+1" style="height:23px;width:auto;vertical-align:middle" title=":+1:" alt="👍" /></p>
]]></description><link>https://forum.cloudron.io/post/24918</link><guid isPermaLink="true">https://forum.cloudron.io/post/24918</guid><dc:creator><![CDATA[BrutalBirdie]]></dc:creator><pubDate>Thu, 04 Feb 2021 19:24:27 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 19:13:18 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/brutalbirdie" aria-label="Profile: brutalbirdie">@<bdi>brutalbirdie</bdi></a> fantastic advice.  I'll give it a shot and see how it goes.  Thanks for your help</p>
]]></description><link>https://forum.cloudron.io/post/24916</link><guid isPermaLink="true">https://forum.cloudron.io/post/24916</guid><dc:creator><![CDATA[paul.toone]]></dc:creator><pubDate>Thu, 04 Feb 2021 19:13:18 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 19:13:04 GMT]]></title><description><![CDATA[<p dir="auto">@paul-toone Hmm</p>
<blockquote>
<p dir="auto">The main reason is that I just moved everyone off of OwnCloud right before Covid. If I just started with a maintained image and asked everyone to move from one nextcloud server to another I will get a lot of pushback. If NextCloud Sync will in fact sync from a completely different server setup using mysql as db backend to this postgres app I will be extremely happy!</p>
</blockquote>
<p dir="auto"><a href="https://nextcloud.com/install/#" target="_blank" rel="noopener noreferrer nofollow ugc">https://nextcloud.com/install/#</a></p>
<p dir="auto">Nextcloud Sync is for syncing data from the Nextcloud to your local device.<br />
It's not meant exactly for what you want, but could be abused as a migration tool <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f61b.png?v=0a7c9407b89" class="not-responsive emoji emoji-android emoji--stuck_out_tongue" style="height:23px;width:auto;vertical-align:middle" title=":P" alt="😛" /></p>
<p dir="auto">My thought process was like. . .</p>
<p dir="auto">Why not tell everyone to install Nextcloud Sync, Sync Data to their local machine and then change the Sync Client to the new Server.<br />
So now the Sync client will upload the 'old' data to the new server.</p>
<p dir="auto"><img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f937.png?v=0a7c9407b89" class="not-responsive emoji emoji-android emoji--shrug" style="height:23px;width:auto;vertical-align:middle" title="🤷" alt="🤷" /></p>
<p dir="auto">There is still another option.<br />
<a href="https://docs.nextcloud.com/server/15/admin_manual/maintenance/migrating.html" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.nextcloud.com/server/15/admin_manual/maintenance/migrating.html</a></p>
<p dir="auto">Still there is the mysql&gt;postgresql 'issue'.<br />
When exporting from mysql you could use the <a href="https://dev.mysql.com/doc/refman/8.0/en/mysqldump.html#option_mysqldump_compatible" target="_blank" rel="noopener noreferrer nofollow ugc">compatibility argument</a> aka</p>
<pre><code>--compatible=postgresql
</code></pre>
<p dir="auto">And try importing this into the new Nextcloud inside Cloudron.</p>
<p dir="auto">This way you can try a migration from OLD Nextcloud with a Backup to Cloudron.</p>
]]></description><link>https://forum.cloudron.io/post/24914</link><guid isPermaLink="true">https://forum.cloudron.io/post/24914</guid><dc:creator><![CDATA[BrutalBirdie]]></dc:creator><pubDate>Thu, 04 Feb 2021 19:13:04 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 19:00:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/brutalbirdie" aria-label="Profile: brutalbirdie">@<bdi>brutalbirdie</bdi></a> You are correct.  This is for a small business.  The main reason is that I just moved everyone off of OwnCloud right before Covid.  If I just started with a maintained image and asked everyone to move from one nextcloud server to another I will get a lot of pushback.  If NextCloud Sync will in fact sync from a completely different server setup using mysql as db backend to this postgres app I will be extremely happy!</p>
]]></description><link>https://forum.cloudron.io/post/24913</link><guid isPermaLink="true">https://forum.cloudron.io/post/24913</guid><dc:creator><![CDATA[paul.toone]]></dc:creator><pubDate>Thu, 04 Feb 2021 19:00:01 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 18:57:17 GMT]]></title><description><![CDATA[<p dir="auto">@atrilahiji I doubt it being done with only manifest and <a href="http://start.sh" target="_blank" rel="noopener noreferrer nofollow ugc">start.sh</a> <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f604.png?v=0a7c9407b89" class="not-responsive emoji emoji-android emoji--smile" style="height:23px;width:auto;vertical-align:middle" title=":D" alt="😄" /></p>
<p dir="auto">If I understand @paul-toone (putting together information from is posts) <a href="https://forum.cloudron.io/topic/4336/gitlab-ee-question">gitlab-ee</a>.<br />
He wants or is using cloudron for his company or dev team.</p>
<p dir="auto">I would not want a custom and self maintained app for Nextcloud <img src="https://forum.cloudron.io/assets/plugins/nodebb-plugin-emoji/emoji/android/1f610.png?v=0a7c9407b89" class="not-responsive emoji emoji-android emoji--neutral_face" style="height:23px;width:auto;vertical-align:middle" title=":|" alt="😐" /></p>
<p dir="auto">May sound rude but with the official one I can complain if something is not working as intended.</p>
<p dir="auto">But now imagine the chaos when a custom build Nextcloud has a problem and some Data is lost. (worst case)</p>
<p dir="auto">. . .</p>
<p dir="auto">When using Cloudron for a company or a team I want a stable environment which I can rely on.</p>
]]></description><link>https://forum.cloudron.io/post/24912</link><guid isPermaLink="true">https://forum.cloudron.io/post/24912</guid><dc:creator><![CDATA[BrutalBirdie]]></dc:creator><pubDate>Thu, 04 Feb 2021 18:57:17 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 18:57:03 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/brutalbirdie" aria-label="Profile: brutalbirdie">@<bdi>brutalbirdie</bdi></a> I'll start looking into it but would nextcloud sync work between two servers with different databases? One as MySQL and one PostgreSQL</p>
]]></description><link>https://forum.cloudron.io/post/24911</link><guid isPermaLink="true">https://forum.cloudron.io/post/24911</guid><dc:creator><![CDATA[paul.toone]]></dc:creator><pubDate>Thu, 04 Feb 2021 18:57:03 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 18:54:16 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/brutalbirdie" aria-label="Profile: BrutalBirdie">@<bdi>BrutalBirdie</bdi></a> Yes, I knew there were some additional configurations that would need to be done but maybe nextcloud sync would be the best bet for now.</p>
<p dir="auto">However, we are very impressed with cloudron and are looking at purchasing a license and moving a handful of our servers to this platform so I figured this would be good to learn how to create custom apps for platforms that are not currently on the app store.  I'm excited to get into the guts of this so if NextCloud Sync works, I'll be back I'm sure when I work on some custom apps in the future.  The support form is awesome with a lot of good responses that come very quickly.  Thank  you all and I'll be back if NextCloud Sync doesn't work.</p>
]]></description><link>https://forum.cloudron.io/post/24909</link><guid isPermaLink="true">https://forum.cloudron.io/post/24909</guid><dc:creator><![CDATA[paul.toone]]></dc:creator><pubDate>Thu, 04 Feb 2021 18:54:16 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 18:48:50 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/brutalbirdie" aria-label="Profile: brutalbirdie">@<bdi>brutalbirdie</bdi></a> oh right... yes he's have to modify the <a href="http://start.sh" target="_blank" rel="noopener noreferrer nofollow ugc">start.sh</a> as well. But yes using the packaged version is going to be your best bet.</p>
]]></description><link>https://forum.cloudron.io/post/24908</link><guid isPermaLink="true">https://forum.cloudron.io/post/24908</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Thu, 04 Feb 2021 18:48:50 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 18:42:53 GMT]]></title><description><![CDATA[<p dir="auto">I would advise against what you are planing to do.</p>
<blockquote>
<p dir="auto">Just to make sure I understand correctly, in the manifest in the addons section, where it has "postgresql": {} would I just change that to "mysql": {} and then change the config file options for nextcloud? Will changing that value automatically create a database and user in the mysql container?</p>
</blockquote>
<p dir="auto">Yes adding mysql to the addons would create a database and user but you would not be done there.<br />
Since the whole Nextcloud app is build for postgresql.</p>
<p dir="auto">Just an example from the <a href="https://git.cloudron.io/cloudron/nextcloud-app/-/blob/master/start.sh#L44" target="_blank" rel="noopener noreferrer nofollow ugc">start.sh</a></p>
<pre><code>tables=$(PGPASSWORD=${CLOUDRON_POSTGRESQL_PASSWORD} psql -h ${CLOUDRON_POSTGRESQL_HOST} -p ${CLOUDRON_POSTGRESQL_PORT} -U ${CLOUDRON_POSTGRESQL_USERNAME} -d ${CLOUDRON_POSTGRESQL_DATABASE} -t -c "SELECT table_name FROM information_schema.tables WHERE table_schema='public';")

    for table in ${tables}; do
        if &lsqb;&lsqb; $table != oc_* &rsqb;&rsqb;; then
            echo "${table} -&gt; oc_${table}"
            PGPASSWORD=${CLOUDRON_POSTGRESQL_PASSWORD} psql -h ${CLOUDRON_POSTGRESQL_HOST} -p ${CLOUDRON_POSTGRESQL_PORT} -U ${CLOUDRON_POSTGRESQL_USERNAME} -d ${CLOUDRON_POSTGRESQL_DATABASE} -c "ALTER TABLE ${table} RENAME TO oc_${table}"
        fi
    done

</code></pre>
<p dir="auto">You would have to look into the app and build a new one for your use-case with mysql etc.</p>
<p dir="auto">But what is the main goal? Migrating Data from A&gt;B?<br />
I would rather do that with Nextcloud Sync and have a working Nextcloud App.</p>
<p dir="auto">To be honest this way you end up with a custom app which you will have to maintain yourself.<br />
With the official one you can count on many people to push updates and improve everything.</p>
]]></description><link>https://forum.cloudron.io/post/24906</link><guid isPermaLink="true">https://forum.cloudron.io/post/24906</guid><dc:creator><![CDATA[BrutalBirdie]]></dc:creator><pubDate>Thu, 04 Feb 2021 18:42:53 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 18:38:25 GMT]]></title><description><![CDATA[<p dir="auto">Perfect.  Makes sense, thank you!</p>
]]></description><link>https://forum.cloudron.io/post/24905</link><guid isPermaLink="true">https://forum.cloudron.io/post/24905</guid><dc:creator><![CDATA[paul.toone]]></dc:creator><pubDate>Thu, 04 Feb 2021 18:38:25 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 18:36:38 GMT]]></title><description><![CDATA[<p dir="auto">@paul-toone correct. You would access the user and db info via the env vars listed in that first link <a class="plugin-mentions-user plugin-mentions-a" href="/user/mehdi" aria-label="Profile: mehdi">@<bdi>mehdi</bdi></a> sent.</p>
]]></description><link>https://forum.cloudron.io/post/24904</link><guid isPermaLink="true">https://forum.cloudron.io/post/24904</guid><dc:creator><![CDATA[[[global:former-user]]]]></dc:creator><pubDate>Thu, 04 Feb 2021 18:36:38 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 18:29:35 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/mehdi" aria-label="Profile: mehdi">@<bdi>mehdi</bdi></a> Just to make sure I understand correctly, in the manifest in the addons section, where it has "postgresql": {} would I just change that to "mysql": {} and then change the config file options for nextcloud?  Will changing that value automatically create a database and user in the mysql container?</p>
]]></description><link>https://forum.cloudron.io/post/24903</link><guid isPermaLink="true">https://forum.cloudron.io/post/24903</guid><dc:creator><![CDATA[paul.toone]]></dc:creator><pubDate>Thu, 04 Feb 2021 18:29:35 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 18:26:06 GMT]]></title><description><![CDATA[<p dir="auto"><a href="https://git.cloudron.io/cloudron/nextcloud-app" target="_blank" rel="noopener noreferrer nofollow ugc">https://git.cloudron.io/cloudron/nextcloud-app</a></p>
]]></description><link>https://forum.cloudron.io/post/24902</link><guid isPermaLink="true">https://forum.cloudron.io/post/24902</guid><dc:creator><![CDATA[BrutalBirdie]]></dc:creator><pubDate>Thu, 04 Feb 2021 18:26:06 GMT</pubDate></item><item><title><![CDATA[Reply to Custom Apps on Thu, 04 Feb 2021 18:25:57 GMT]]></title><description><![CDATA[<p dir="auto">@paul-toone It's declared in the app's manifest. You should find the information you need in <a href="https://docs.cloudron.io/custom-apps/addons/" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.cloudron.io/custom-apps/addons/</a> and <a href="https://docs.cloudron.io/custom-apps/manifest/" target="_blank" rel="noopener noreferrer nofollow ugc">https://docs.cloudron.io/custom-apps/manifest/</a></p>
]]></description><link>https://forum.cloudron.io/post/24901</link><guid isPermaLink="true">https://forum.cloudron.io/post/24901</guid><dc:creator><![CDATA[mehdi]]></dc:creator><pubDate>Thu, 04 Feb 2021 18:25:57 GMT</pubDate></item></channel></rss>