3
2 Comments

Community Project - "Stupid Easy Backend"

"Stupid Easy Backend"

Open up the browser, you see a simple one-file IDE (ruby or node), just write your routes, and deploy. You get monitoring without any of the headaches. Stupid easy.

I don't have too much time to commit but if a bunch of people want to do a semi-open source project, all the contributors can split the profits based on how much they've contributed. We could all help build a pretty useful tool for makers like us. Maybe make some cash while doing it?

  1. 1

    This comment was deleted 8 years ago

  2. 1

    This comment was deleted 7 years ago

    1. 1

      Maybe i haven‘t Unterstand your Project to a deeper Level but that Sounds just like a docker compose file. Actually your yaml Looks just like a docker-compose file for a MariaDB.

      Sorry for the Camelcase like English. Typing on an iPhone Keyboard as a german is so annoying. Every word is „corrected“...

      1. 1

        This comment was deleted 7 years ago

        1. 1

          Well. You just describe all the advantages why i use docker in my day to day dev.. :D

          freckles is not designed for orchestration
          So is Docker. Docker is just an abstraction like a VM. Docker-compose on the otherhand is for orchestration of multiple Docker Containers.

          it's really primarily about having a reproducible way of setting up a machine (be it physical, virtual, or a container)

          And exactly this is what Docker Images do. You write a Dockerfile where you grab a Baseimage and do your stuff. This image can run on Windows, Linux, Mac in Production or locally..

          I just want to describe my routine when i go for a new WordPress Project just like in your example:

          I have made a WordPress Docker Image with everything installed. That means i have a Dockerfile somewhere in my Company-Git where i describe how the Image should look like and a Docker Repository where Developers can grab that Image. Now if i or some other dev want to develop a new Theme for example they simply write a docker-compose.yml with the following content:

          blabla
            wp:
              image: path.to.my.git/wordpress:tag
              volumes: 
                 - ./local/theme/files:/var/www/html/wordpress/wp-content/themes/
              ports: 8080:80
          

          Every dev is now working with the same foundation in a matter of seconds.

          Is this how you think about freckles?

          1. 1

            This comment was deleted 7 years ago

  3. 1

    This comment was deleted 8 years ago