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. Eleutheria Pay - Open source donation platform

Eleutheria Pay - Open source donation platform

Scheduled Pinned Locked Moved App Wishlist
124 Posts 8 Posters 53.3k Views 10 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.
  • marcusquinnM marcusquinn

    Great stuff!

    Talking of the name, when I read it, I read "Uretha" 😊

    Depending on if you want to find a matching domains, naming is very personal, but here's some that sound OK to me:

    • Atpay
    • Button Pay
    • Elpay
    • Pay Button
    • Paystar

    I do like coming up with names - but, like I say, I'm sure very personal. I hereby give away all copyright and claims to any of those if you do like though, so feel free to screenshot and hold me to that πŸ™‚

    ? Offline
    ? Offline
    A Former User
    wrote on last edited by
    #88

    @marcusquinn Cool, thanks for the suggestions! Yeah the name is the part I am most unsure about rn. And the logo is basic but honestly I care less about the logo and more about the name and usability.

    Working at a v2 I want to clean some more things up, write a golang backend, and build it with my CI to make it extremely easy to deploy. JS is cool and all but something about having 3 package.json files floating around in a single project makes me want to puke in my mouth a bit.

    marcusquinnM 1 Reply Last reply
    2
    • ? A Former User

      @marcusquinn Cool, thanks for the suggestions! Yeah the name is the part I am most unsure about rn. And the logo is basic but honestly I care less about the logo and more about the name and usability.

      Working at a v2 I want to clean some more things up, write a golang backend, and build it with my CI to make it extremely easy to deploy. JS is cool and all but something about having 3 package.json files floating around in a single project makes me want to puke in my mouth a bit.

      marcusquinnM Offline
      marcusquinnM Offline
      marcusquinn
      wrote on last edited by
      #89

      @atrilahiji Haha, Puke Pay? πŸ˜‚

      Web Design https://www.evergreen.je
      Development https://brandlight.org
      Life https://marcusquinn.com

      ? 1 Reply Last reply
      0
      • marcusquinnM marcusquinn

        @atrilahiji Haha, Puke Pay? πŸ˜‚

        ? Offline
        ? Offline
        A Former User
        wrote on last edited by A Former User
        #90

        @marcusquinn An accurate name until I get node out of there. Ideally I want a pre-built frontend + backend executable. Keeping it simple. Right now I have scripts building the frontend and backend node bundles... πŸ˜•

        Don't get me wrong, Node has its place. But this just seems like too much lol

        1 Reply Last reply
        0
        • girishG Offline
          girishG Offline
          girish
          Staff
          wrote on last edited by
          #91

          @atrilahiji I really like the Go approach of single binary! There is also this module called rice which compiles assets in a go code which you can compile into your app. Very nice because the resulting single binary is very end user friendly.

          ? 1 Reply Last reply
          0
          • girishG girish

            @atrilahiji I really like the Go approach of single binary! There is also this module called rice which compiles assets in a go code which you can compile into your app. Very nice because the resulting single binary is very end user friendly.

            ? Offline
            ? Offline
            A Former User
            wrote on last edited by
            #92

            @girish oh wow I’ll check that out! For now it’s definitely node based but I can also just update the package then. Not like the backend is super complex anyways.

            Idk you think it’s worth waiting?

            girishG 1 Reply Last reply
            0
            • ? A Former User

              @girish oh wow I’ll check that out! For now it’s definitely node based but I can also just update the package then. Not like the backend is super complex anyways.

              Idk you think it’s worth waiting?

              girishG Offline
              girishG Offline
              girish
              Staff
              wrote on last edited by
              #93

              @atrilahiji As long as the config file is compatible between releases, I think it's fine. After all, end user doesn't care what language it's written in.

              ? 1 Reply Last reply
              1
              • girishG girish

                @atrilahiji As long as the config file is compatible between releases, I think it's fine. After all, end user doesn't care what language it's written in.

                ? Offline
                ? Offline
                A Former User
                wrote on last edited by A Former User
                #94

                @girish I don't plan on changing it anytime soon but just in-case I will put out a minor release with a .env merge script we can run from start.sh in the package. This is a good point, thanks for bringing that up. Better safe than sorry.

                1 Reply Last reply
                0
                • ? Offline
                  ? Offline
                  A Former User
                  wrote on last edited by A Former User
                  #95

                  Man golang is fun. Had some frustrations with module management. Maybe I should look at plain ol C or Rust for good ol downloading and relative linking of dependencies but otherwise golang is fun. That being said I found what you were talking about @girish and I’ve it all in one binary. Only thing now is I need to expose the CSS config in the .env file. Makes it easier so releases are just a .env and an executable. Simple and elegant.

                  robiR 1 Reply Last reply
                  0
                  • ? A Former User

                    Man golang is fun. Had some frustrations with module management. Maybe I should look at plain ol C or Rust for good ol downloading and relative linking of dependencies but otherwise golang is fun. That being said I found what you were talking about @girish and I’ve it all in one binary. Only thing now is I need to expose the CSS config in the .env file. Makes it easier so releases are just a .env and an executable. Simple and elegant.

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

                    @atrilahiji yeah, I always use GVM to manage diff go versions and modules.

                    Conscious tech

                    ? 1 Reply Last reply
                    0
                    • robiR robi

                      @atrilahiji yeah, I always use GVM to manage diff go versions and modules.

                      ? Offline
                      ? Offline
                      A Former User
                      wrote on last edited by
                      #97

                      @robi Oh wow thanks!

                      That helps quite a bit! I find the whole central location for modules frustrating. I guess I'm used to just dropping a library or some code I wrote into the same directory as my main app and linking to it via its relative path.

                      I don't want to change langs again but now part of me is curious about just writing a C server lol. A fun challenge but not for this particular project πŸ˜›

                      1 Reply Last reply
                      0
                      • ? Offline
                        ? Offline
                        A Former User
                        wrote on last edited by
                        #98

                        Screen Shot 2021-03-14 at 12.38.20 AM.png
                        πŸ‘€ πŸ‘€ πŸ‘€ πŸ‘€ πŸ‘€ πŸ‘€ πŸ‘€

                        ? 1 Reply Last reply
                        1
                        • ? A Former User

                          Screen Shot 2021-03-14 at 12.38.20 AM.png
                          πŸ‘€ πŸ‘€ πŸ‘€ πŸ‘€ πŸ‘€ πŸ‘€ πŸ‘€

                          ? Offline
                          ? Offline
                          A Former User
                          wrote on last edited by A Former User
                          #99

                          @atrilahiji Finished EL for now (as in I believe it is ready for use). And the package merges the configs. Its a single .env and binary now πŸ˜„

                          Thanks for that suggestion @girish !

                          girishG 1 Reply Last reply
                          5
                          • ? A Former User

                            @atrilahiji Finished EL for now (as in I believe it is ready for use). And the package merges the configs. Its a single .env and binary now πŸ˜„

                            Thanks for that suggestion @girish !

                            girishG Offline
                            girishG Offline
                            girish
                            Staff
                            wrote on last edited by
                            #100

                            @atrilahiji Oh wow, you ended up rewriting it in Go? That was pretty quick, I must say. Where is the Cloudron package btw? Or is that not done yet?

                            ? 1 Reply Last reply
                            0
                            • girishG girish

                              @atrilahiji Oh wow, you ended up rewriting it in Go? That was pretty quick, I must say. Where is the Cloudron package btw? Or is that not done yet?

                              ? Offline
                              ? Offline
                              A Former User
                              wrote on last edited by
                              #101

                              @girish one quick update before I think it’s ready (had to re-enable asset customization)

                              Yeah thankfully the backend for EleutheriaPay is very simple so rewriting it in go was pretty quick. I did have to pull out an assets folder from the executable so it can be customized. But it still means the frontend build is already done when it is downloaded.

                              I’ll link it here in a moment

                              girishG 1 Reply Last reply
                              0
                              • ? A Former User

                                @girish one quick update before I think it’s ready (had to re-enable asset customization)

                                Yeah thankfully the backend for EleutheriaPay is very simple so rewriting it in go was pretty quick. I did have to pull out an assets folder from the executable so it can be customized. But it still means the frontend build is already done when it is downloaded.

                                I’ll link it here in a moment

                                girishG Offline
                                girishG Offline
                                girish
                                Staff
                                wrote on last edited by
                                #102

                                @atrilahiji if it can be a separate repo like other app packages, that will be great! You can put it in git.cloudron.io

                                ? 1 Reply Last reply
                                0
                                • girishG girish

                                  @atrilahiji if it can be a separate repo like other app packages, that will be great! You can put it in git.cloudron.io

                                  ? Offline
                                  ? Offline
                                  A Former User
                                  wrote on last edited by
                                  #103

                                  @girish Its been over here: https://git.cloudron.io/AtriLahiji/eleutheriapay-app

                                  I just updated it and fixed asset linking. Should be ready now. I've lost count of the number of times I've said it should be ready but my ADD brain does seem to miss things I need to fix. This time for real though.

                                  1 Reply Last reply
                                  1
                                  • P Offline
                                    P Offline
                                    privsec
                                    wrote on last edited by
                                    #104

                                    I am really interested in this, I’ll be looking this over to see if I can help develop it.

                                    ? 1 Reply Last reply
                                    0
                                    • P privsec

                                      I am really interested in this, I’ll be looking this over to see if I can help develop it.

                                      ? Offline
                                      ? Offline
                                      A Former User
                                      wrote on last edited by
                                      #105

                                      @privsec Develop it? I mean I am open to contributions if thats what you mean.

                                      P 1 Reply Last reply
                                      1
                                      • ? A Former User

                                        @privsec Develop it? I mean I am open to contributions if thats what you mean.

                                        P Offline
                                        P Offline
                                        privsec
                                        wrote on last edited by
                                        #106

                                        @atrilahiji yes, sorry.

                                        Contribute to it in any way. I love the idea of this.

                                        ? 1 Reply Last reply
                                        0
                                        • P privsec

                                          @atrilahiji yes, sorry.

                                          Contribute to it in any way. I love the idea of this.

                                          ? Offline
                                          ? Offline
                                          A Former User
                                          wrote on last edited by A Former User
                                          #107

                                          @privsec Ah I see. Yeah its on my self hosted gitea but I can always make accounts for those who want to contribute or try to merge in contributions with credit from forks on GitHub or something. I haven't figured out the whole contribution model for self hosted yet. This is why we need activitypub gitea πŸ˜›

                                          I'm glad you like it!

                                          1 Reply Last reply
                                          0
                                          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