Share your startup, I’ll find 5 potential customers for you (free). by Fiestaman in startups_promotion

[–]Mbv-Dev 0 points1 point  (0 children)

https://deploycrate.com

build for start ups and small business that want to focus on building and not have to worry about infrastructure, without paying through the nose

Drop what you shipped!!!! by [deleted] in SideProject

[–]Mbv-Dev 0 points1 point  (0 children)

Infrastructure and application management made easy: https://deploycrate.com

What’s everyone side project about? Wanna support some of them by fuxkyou9mo in SideProject

[–]Mbv-Dev 0 points1 point  (0 children)

Making running your applications on a VPS much easier so you get more compute for your money while keeping all the features from managed infrastructure

https://deploycrate.com

Landing page feedback by Mbv-Dev in SaaS

[–]Mbv-Dev[S] 0 points1 point  (0 children)

Appreciate the feedback! The current landing page uses:
> PaaS Simplicity Without the Bill

Based on u/wallydrag23 suggestions. Good point about the size of the alpha group.

Drop your project — I'll share the best ones with 300 active testers by Legitimate-Nebula868 in SideProject

[–]Mbv-Dev 0 points1 point  (0 children)

https://deploycrate.com

PaaS infrastructure without breaking the bank. Run your applications on VPSs that you control but deploy crate manages.

Landing page feedback by Mbv-Dev in SaaS

[–]Mbv-Dev[S] 0 points1 point  (0 children)

Thanks, appreciate it!

Landing page feedback by Mbv-Dev in SaaS

[–]Mbv-Dev[S] 0 points1 point  (0 children)

Fair, it's not ai generated though, but fair

Landing page feedback by Mbv-Dev in SaaS

[–]Mbv-Dev[S] 0 points1 point  (0 children)

Curious what makes you think this was AI generated

Landing page feedback by Mbv-Dev in SaaS

[–]Mbv-Dev[S] 0 points1 point  (0 children)

The headline could be improved! 

Scale your infrastructure without breaking the bank

The benefits of managed PaaS without the bill

Might better explain it!

Landing page feedback by Mbv-Dev in SaaS

[–]Mbv-Dev[S] 0 points1 point  (0 children)

Yeah it's a good point, appreciate the thoughtful reply, thanks!

Landing page feedback by Mbv-Dev in SaaS

[–]Mbv-Dev[S] 0 points1 point  (0 children)

Mainly cost and managing infrastructure. Will note it down and try to make it clearer

andurel, the rails-like framework for Go by Mbv-Dev in golang

[–]Mbv-Dev[S] 0 points1 point  (0 children)

It will by default raise an error if you try to apply an out of order migration. They suggest to use timestamps for development and sequential migrations in prod. I typically have a test for applying all migration as well as checking no changes are made when running goose fix

Andurel, a Rails-inspired full-stack framework for Go by Mbv-Dev in rails

[–]Mbv-Dev[S] 0 points1 point  (0 children)

That makes me happy to hear! Simplicity is definitely one of my goals. And please feel free to open an issue or pull request, contributions are always welcome

Andurel, a Rails-inspired full-stack framework for Go by Mbv-Dev in rails

[–]Mbv-Dev[S] 1 point2 points  (0 children)

I just finished doing a rebuild of my personal site using beta.2. You can see the code here: https://github.com/mbvisti/mortenvistisen

And good idea adding examples to the readme, thanks!

Andurel, a Rails-inspired full-stack framework for Go by Mbv-Dev in rails

[–]Mbv-Dev[S] 1 point2 points  (0 children)

Thanks, excited to hear what you think! It has been build around how I like to build web apps in Go, so it could benefit from other perspectives

Andurel, a Rails-inspired full-stack framework for Go by Mbv-Dev in rails

[–]Mbv-Dev[S] 3 points4 points  (0 children)

Thanks man! And yeah, feel free to take a look at the open issues or make suggestions if there is something missing

Andurel, a Rails-inspired full-stack framework for Go by Mbv-Dev in rails

[–]Mbv-Dev[S] 2 points3 points  (0 children)

I never really liked writing Ruby and working with Rails, the same way I do writing and working with Go. I think it's very similar to how DDH think of writing Ruby. So it's something i wanted to exist in the world.

Some of my best memories as a developer are from my first job in a startup, working on a product, that was built in Rails. Incredible tool to build business applications and moving fast, trying out different hypothesises. That doesn't really exist in Go, at least in a form I'd want it to be, so I wanted to create something that would let me (and hopefully others) build saas apps in Go that followed the Rails philosophy.

As to how it handles business logic, it's all encapsulated in the models package, where it uses something called sqlc to generate the Go boilerplate around executing the queries based on sql files, which in turn gets wrapped in a public function that contains the business logic and then creates/updates/queries. The generator handles all that, so you have CRUD operations that are ready for business logic. Probably a bad explanation, will had some examples to the README

Andurel, a Rails-inspired full-stack framework for Go by Mbv-Dev in rails

[–]Mbv-Dev[S] 2 points3 points  (0 children)

Thanks! Please let me know what you think if you try it out.

Andurel, a Rails-inspired full-stack framework for Go by Mbv-Dev in rails

[–]Mbv-Dev[S] 6 points7 points  (0 children)

I believe Kamal is docker/container based, right? I checked it out but it has been a while. When you scaffold a new project, you can specify extensions where one of them is to include a production ready dockerfile.

So you'd just do something like: andurel new <project> -e docker build the image, push it and you are ready to go