Cloudron makes it easy to run web apps like WordPress, Nextcloud, GitLab on your server. Find out more or install now.


Skip to content

App Wishlist

Propose and vote for apps to be packaged

1.5k Topics 12.6k Posts
  • 3 Votes
    2 Posts
    207 Views
    timconsidineT

    I occasionally use Mermaid in Trilium and it's nice.
    A dedicated app would be great.

  • ICEHRM

    4
    6 Votes
    4 Posts
    147 Views
    mhgcicM

    @jdaviescoates said in ICEHRM:

    Could you perhaps share more info about how you manage volunteers using IceHrm?

    We find most HRM complicated for some to manage volunteers, especially for not being HR trained.

    We use it to

    Securely keep volunteer information (DOB, Numbers, Addresses, ID Evidence, Documents like agreements and more. Management of volunteer leave like when ill or on holiday. We use it for time sheets to track when they have been in or if they are not coming in enough. We use it to manage our volunteer's expenses. Forms Volunteer training management and more.

    We like it because

    Free for the most part. Easy to use. Integrations into google. They have an app.

    It is well worth the time and great for NPO and charities alike.

  • APItable - Airtable alternative

    4
    11 Votes
    4 Posts
    409 Views
    C

    Hi,
    any news regarding apitable ? It would be so useful to have it as an app in cloudron! Much more polished and feature-rich than baserow

  • Cal.com (was Calendso) - Calendly Alternative

    Locked Solved
    124
    48 Votes
    124 Posts
    12k Views
    nebulonN

    I have just pushed an initial unstable package. Will lock this thread, the new forum section is https://forum.cloudron.io/category/174/cal-com

  • GTP4All

    5
    5 Votes
    5 Posts
    818 Views
    marcusquinnM

    @LoudLemur Don't worry, give it a while and someone will make a GPT refrigerator.

  • Redbot for Discord

    1
    0 Votes
    1 Posts
    55 Views
    No one has replied
  • LlamaGPT

    2
    4 Votes
    2 Posts
    146 Views
    robiR

    https://forum.cloudron.io/topic/9399/how-to-run-ai-models-in-lamp-app

  • Webtrees - Web based family history software

    2
    3 Votes
    2 Posts
    83 Views
    necrevistonnezrN

    This should run in the LAMP app: https://webtrees.net/install/requirements/

  • Repomaker - Create your own F-Droid repo

    1
    4 Votes
    1 Posts
    88 Views
    No one has replied
  • This topic is deleted!

    1
    0 Votes
    1 Posts
    1 Views
    No one has replied
  • LibrePhotos

    7
    15 Votes
    7 Posts
    748 Views
    randyjcR

    https://docs.librephotos.com/docs/user-guide/first-steps#how-to-import-photos-from-an-external-nextcloud-instance

    I think this is an awesome feature to combine with your photo management software. I'm currently testing different kinds of photo apps to find a workflow for uploading all my photos to a separate photo app for sharing. However, this feature makes it really easy for me, as it will simply copy the data over to your LibrePhotos app.

  • Elk - A nimble Mastodon web client

    4
    6 Votes
    4 Posts
    214 Views
    archosA

    It would be great if the app was in our App store.

  • 1 Votes
    9 Posts
    534 Views
    micmcM

    @sarah-white said in Mailwizz - Self-hosted email marketing software:

    It's important to note that while Cloudron offers a lot of flexibility in managing applications, there might be some specific configuration requirements for MailWizz that need to be accommodated within the Cloudron environment. You may also need to consider licensing, support, and updates for MailWizz within the Cloudron context.

    It works perfectly well out of the box on a LAMP instance on Cloudron without any "specific configuration". It's not running within the Cloudron context but in a Linux, Apache, MySQL, PHP context, just a bit as a VPS could be -and very often is- configured to run this out of the box as well.

    Of course, if and when one wants to get into a SaaS with more muscles (as running through multiple IPs simultaneously for example), then some more technically advanced knowledge and settings would be required. But then, we're at another level which I think Cloudron per se tends solve 😉

  • Host your own captcha with Mcaptcha

    2
    10 Votes
    2 Posts
    133 Views
    L

    Good suggestion. For those interested in this topic, please also see this thread:

    https://forum.cloudron.io/topic/6789/captcha-options-for-cloudron-applications

  • Open Datenschutzcenter

    1
    4 Votes
    1 Posts
    90 Views
    No one has replied
  • Psono - Open Source Password Manager

    3
    0 Votes
    3 Posts
    302 Views
    robiR

    Has mobile apps now, and someone App linked to it on the demo server 😆

  • mage.ai - A modern replacement for Airflow

    1
    3 Votes
    1 Posts
    167 Views
    No one has replied
  • Wiby Personal Search Engine

    2
    4 Votes
    2 Posts
    120 Views
    robiR
    Installation

    I can only provide manual install instructions at this time.

    Note that while the software is functionally complete, it is still in beta. Anticipate that some bugs will be discovered now that the source is released. Ensure that you isolate the search engine from your other important services, and if you are running parts of it out of your home, keep the servers on a separate VLAN. Make sure this VLAN cannot access your router or switch interface. Continue this practise even when the software reaches "1.0".

    If you have created a "LAMP", or rather a "LEMP" server before, this isn't much more complicated. If you've never done that, I suggest you find a "LEMP" tutorial.

    Build a LEMP server

    Digital Ocean tutorials are usually pretty good so here is a link to one for Ubuntu 20 and Ubuntu 22.

    For the sake of simplicity, assume all instructions are for Ubuntu 20 or 22. If you are on a different distro, modify the install steps accordingly to suit your distro.

    If you don't have a physical server, you can rent computing space by looking for a "VPS provider". This virtual computer will be your reverse proxy, and if you want, it can host everything else too.

    Install the following additional packages:

    apt install build-essential php-gd libcurl4-openssl-dev libmysqlclient-dev golang git

    Get Wiby Source Files

    Download the source directly from Wiby here, or from GitHub. The source is released under the GPLv2 license. Copy the source files for Wiby to your server.

    Compile the crawler (cr), refresh scheduler (rs), replication tracker (rt):

    gcc cr.c -o cr -lmysqlclient -lcurl -std=c99 -O3
    gcc rs.c -o rs -lmysqlclient -std=c99 -O3
    gcc rt.c -o rt -lmysqlclient -std=c99 -O3

    If you get any compile errors, it is likely due to the path of the mysql or libcurl header files. This could happen if you are not using Ubuntu. You might have to locate the correct path for curl.h, easy.h, mysql.h, then edit the #include paths in the source files.

    Build the core server application:

    The core application is located inside the go folder. Run the following commands after copying the files over to your preferred location:

    For Ubuntu 20:
    go get -u github.com/go-sql-driver/mysql

    For Ubuntu 22 OR latest Golang versions:
    go install github.com/go-sql-driver/mysql@latest
    go mod init mysql
    go get github.com/go-sql-driver/mysql

    go build core.go
    go build 1core.go

    If you are just starting out, you can use '1core'. If you are going to setup replication servers or you are using a computer with a lot of available cores, you can use 'core', but make sure to read the scaling section.

    If you want to use 1core on a server separate from your reverse proxy server, modify line 37 of 1core.go: replace 'localhost' with '0.0.0.0' so that it accepts connections over your VPN from your reverse proxy.

    You can also use index.php in the root of the www directory and not use the Go version at all. Though the PHP version is used mainly for prototyping.

  • WTTR Weather

    1
    3 Votes
    1 Posts
    47 Views
    No one has replied
  • SeaTable - Speadsheet meets database

    25
    13 Votes
    25 Posts
    2k Views
    timconsidineT

    @LoudLemur said in SeaTable - Speadsheet meets database:

    NoCoDB, which is Free Software and billed as a SeaTable alternative

    Last time I checked, SeaTable was better than NocoDB or Baserow.