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


Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • Bookmarks
  • Search
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Brand Logo

Cloudron Forum

Apps | Demo | Docs | Install
  1. Cloudron Forum
  2. App Wishlist
  3. GoToSocial | Mastodon Alternative

GoToSocial | Mastodon Alternative

Scheduled Pinned Locked Moved App Wishlist
26 Posts 6 Posters 4.0k Views 5 Watching
  • Oldest to Newest
  • Newest to Oldest
  • Most Votes
Reply
  • Reply as topic
Log in to reply
This topic has been deleted. Only users with topic management privileges can see it.
  • yusfY yusf

    @murgero Hey, I'm getting

    App installation error: Invalid CloudronManifest.json: Format validation failed (Invalid URL) @ /mediaLinks/0
    

    when running cloudron install --image=mitchellurgero/org.urgero.gts:latest.

    murgeroM Offline
    murgeroM Offline
    murgero
    App Dev
    wrote on last edited by
    #6

    @yusf Oh shoot, I should remove the medialinks section, its not ready yet.

    --
    https://urgero.org
    ~ Professional Nerd. Freelance Programmer. ~

    1 Reply Last reply
    0
    • yusfY yusf

      I did remove the mediaLinks line in the manifest file and it all worked. Now my issue is that I can't configure account-domain before the app boots up, making it seemingly impossible to change:

      # DO NOT change this after your server has already run once, or you will break things!
      

      Any advice? 🙂

      Great job so far 💓

      murgeroM Offline
      murgeroM Offline
      murgero
      App Dev
      wrote on last edited by
      #7

      @yusf The startup script configures this for you. I am trying to find a way to make that configurable pre-install like some apps can change their ports pre install. Otherwise it defaults to the current app domain.

      Also, if you wanna get weird with it, you can change that value but then drop the table in postgresql for the app (PROCEED WITH CAUTION)

      --
      https://urgero.org
      ~ Professional Nerd. Freelance Programmer. ~

      yusfY 1 Reply Last reply
      2
      • murgeroM murgero

        @yusf The startup script configures this for you. I am trying to find a way to make that configurable pre-install like some apps can change their ports pre install. Otherwise it defaults to the current app domain.

        Also, if you wanna get weird with it, you can change that value but then drop the table in postgresql for the app (PROCEED WITH CAUTION)

        yusfY Offline
        yusfY Offline
        yusf
        wrote on last edited by
        #8

        @murgero So if I drop the table it just gets recreated?

        I was also considering trying install to domain.tld, then move it to a subdomain.

        murgeroM 1 Reply Last reply
        1
        • yusfY yusf

          @murgero So if I drop the table it just gets recreated?

          I was also considering trying install to domain.tld, then move it to a subdomain.

          murgeroM Offline
          murgeroM Offline
          murgero
          App Dev
          wrote on last edited by murgero
          #9

          @yusf You can't move domain once it's installed unless you drop the database it uses (see that same config for the creds, db name, etc)

          be aware this will erase any user data on the instance.

          But yes - it will recreate database and tables.

          --
          https://urgero.org
          ~ Professional Nerd. Freelance Programmer. ~

          1 Reply Last reply
          1
          • robiR Offline
            robiR Offline
            robi
            wrote on last edited by robi
            #10

            Sounds like there could be a DB script action created that would be a bit more fine grained in modifying just the wanted (sub)domain references, instead of a whole DB drop.

            Eventually becoming a migration script.

            Conscious tech

            murgeroM 1 Reply Last reply
            0
            • robiR robi

              Sounds like there could be a DB script action created that would be a bit more fine grained in modifying just the wanted (sub)domain references, instead of a whole DB drop.

              Eventually becoming a migration script.

              murgeroM Offline
              murgeroM Offline
              murgero
              App Dev
              wrote on last edited by
              #11

              @robi Is that something upstream? Cause I can't find that.

              --
              https://urgero.org
              ~ Professional Nerd. Freelance Programmer. ~

              robiR 1 Reply Last reply
              0
              • murgeroM murgero

                @robi Is that something upstream? Cause I can't find that.

                robiR Offline
                robiR Offline
                robi
                wrote on last edited by
                #12

                @murgero no, it was a suggestion, since so many people want TLD based Masto IDs yet still want to run the server on a subdomain.

                Conscious tech

                1 Reply Last reply
                0
                • yusfY Offline
                  yusfY Offline
                  yusf
                  wrote on last edited by
                  #13

                  So I can enter a terminal in the GTS container, access and drop its db from there?

                  murgeroM 1 Reply Last reply
                  0
                  • yusfY yusf

                    So I can enter a terminal in the GTS container, access and drop its db from there?

                    murgeroM Offline
                    murgeroM Offline
                    murgero
                    App Dev
                    wrote on last edited by
                    #14

                    @yusf you should be able to yes

                    --
                    https://urgero.org
                    ~ Professional Nerd. Freelance Programmer. ~

                    yusfY 1 Reply Last reply
                    1
                    • murgeroM murgero

                      @yusf you should be able to yes

                      yusfY Offline
                      yusfY Offline
                      yusf
                      wrote on last edited by yusf
                      #15

                      @murgero It's not clear to me how to do that. I tried

                      ALTER DATABASE mydb CONNECTION LIMIT 0;
                      and

                      SELECT pg_terminate_backend(pid)
                      FROM pg_stat_activity
                      WHERE datname = 'mydb';
                      

                      but I only managed to lock myself out before being able to
                      DROP DATABASE mydb; 😂

                      How should I drop the database? No matter what I try I get

                      ERROR: cannot drop the currently open database`

                      murgeroM 1 Reply Last reply
                      0
                      • yusfY yusf

                        @murgero It's not clear to me how to do that. I tried

                        ALTER DATABASE mydb CONNECTION LIMIT 0;
                        and

                        SELECT pg_terminate_backend(pid)
                        FROM pg_stat_activity
                        WHERE datname = 'mydb';
                        

                        but I only managed to lock myself out before being able to
                        DROP DATABASE mydb; 😂

                        How should I drop the database? No matter what I try I get

                        ERROR: cannot drop the currently open database`

                        murgeroM Offline
                        murgeroM Offline
                        murgero
                        App Dev
                        wrote on last edited by
                        #16

                        @yusf That's more a question for psql community. sadly IDK lol

                        --
                        https://urgero.org
                        ~ Professional Nerd. Freelance Programmer. ~

                        1 Reply Last reply
                        1
                        • yusfY Offline
                          yusfY Offline
                          yusf
                          wrote on last edited by
                          #17

                          imo this app is great for when not wanting the full resource hog that is the Mastodon package. @girish / @nebulon, are you interested in packaging?

                          robiR 1 Reply Last reply
                          4
                          • yusfY yusf

                            imo this app is great for when not wanting the full resource hog that is the Mastodon package. @girish / @nebulon, are you interested in packaging?

                            robiR Offline
                            robiR Offline
                            robi
                            wrote on last edited by
                            #18

                            @yusf if you help get things started and moving forward packaging, others can contribute, then @girish will be able to add it to the app store for testing.

                            Otherwise the larger number of upvotes for other apps will likely take precedence.

                            Conscious tech

                            murgeroM 1 Reply Last reply
                            1
                            • robiR robi

                              @yusf if you help get things started and moving forward packaging, others can contribute, then @girish will be able to add it to the app store for testing.

                              Otherwise the larger number of upvotes for other apps will likely take precedence.

                              murgeroM Offline
                              murgeroM Offline
                              murgero
                              App Dev
                              wrote on last edited by
                              #19

                              @robi This app is packaged and tested working on my server, repo is ready - all it needs is tests which I cannot do right now but maybe this weekend or next.

                              --
                              https://urgero.org
                              ~ Professional Nerd. Freelance Programmer. ~

                              doodlemania2D 1 Reply Last reply
                              1
                              • murgeroM murgero

                                @robi This app is packaged and tested working on my server, repo is ready - all it needs is tests which I cannot do right now but maybe this weekend or next.

                                doodlemania2D Offline
                                doodlemania2D Offline
                                doodlemania2
                                App Dev
                                wrote on last edited by
                                #20

                                @murgero care to share?

                                murgeroM 1 Reply Last reply
                                0
                                • doodlemania2D doodlemania2

                                  @murgero care to share?

                                  murgeroM Offline
                                  murgeroM Offline
                                  murgero
                                  App Dev
                                  wrote on last edited by
                                  #21

                                  @doodlemania2 Repo is in the original post 🙂

                                  --
                                  https://urgero.org
                                  ~ Professional Nerd. Freelance Programmer. ~

                                  1 Reply Last reply
                                  2
                                  • archosA Offline
                                    archosA Offline
                                    archos
                                    wrote on last edited by
                                    #22

                                    If there was a Gotosocial on Cloudron it would be great. Minimal on resources and for individuals, it's definitely a better choice than Mastodon.

                                    1 Reply Last reply
                                    1
                                    • archosA Offline
                                      archosA Offline
                                      archos
                                      wrote on last edited by archos
                                      #23

                                      What do you think, does nobody really want Gotosocial in Cloudron? I understand there are already three fediverse apps in the app store, but for individuals, gotosocial is much better than the big Mastodon.

                                      jdaviescoatesJ murgeroM 2 Replies Last reply
                                      1
                                      • archosA archos

                                        What do you think, does nobody really want Gotosocial in Cloudron? I understand there are already three fediverse apps in the app store, but for individuals, gotosocial is much better than the big Mastodon.

                                        jdaviescoatesJ Offline
                                        jdaviescoatesJ Offline
                                        jdaviescoates
                                        wrote on last edited by
                                        #24

                                        @archos I think the more the merrier, but I'd rather see other fediverse apps in completely different categories that we haven't got covered at all yet, things like Mobilizon and Lemmy.

                                        I use Cloudron with Gandi & Hetzner

                                        1 Reply Last reply
                                        1
                                        • archosA archos

                                          What do you think, does nobody really want Gotosocial in Cloudron? I understand there are already three fediverse apps in the app store, but for individuals, gotosocial is much better than the big Mastodon.

                                          murgeroM Offline
                                          murgeroM Offline
                                          murgero
                                          App Dev
                                          wrote on last edited by
                                          #25

                                          @archos my package on cloudron's gitlab server is federation ready afaik. But I haven't updated it in a long while, if you update it, it can be installed via cloudron CLI and be used just fine

                                          --
                                          https://urgero.org
                                          ~ Professional Nerd. Freelance Programmer. ~

                                          archosA 1 Reply Last reply
                                          1
                                          Reply
                                          • Reply as topic
                                          Log in to reply
                                          • Oldest to Newest
                                          • Newest to Oldest
                                          • Most Votes


                                          • Login

                                          • Don't have an account? Register

                                          • Login or register to search.
                                          • First post
                                            Last post
                                          0
                                          • Categories
                                          • Recent
                                          • Tags
                                          • Popular
                                          • Bookmarks
                                          • Search