Dev Useful Stuff
2.05K subscribers
2 photos
352 links
Here you can find some interesting links to development libraries, frameworks, tools, plugins and articles
Download Telegram
​​Spot - (★184 at GitHub) (aka simplotask) is a powerful and easy-to-use tool for effortless deployment and configuration management. It allows users to define a playbook with the list of tasks and targets, where each task consists of a series of commands that can be executed on remote hosts concurrently. Spot supports running scripts, copying files, syncing directories, and deleting files or directories, as well as custom inventory files or inventory URLs.

This is a recenlty released project from quite respected developer with a good reputation, who was fed up with Ansible. He decided to write a tool that would be easier and yet powerful. So it's worth to check this project.

#ops #devops #deployment #script
21👍1
​​Encore - (★4.1k at GitHub) is a backend development platform that automatically provisions infrastructure — from developing locally to scaling on AWS/GCP. It's designed to help you build your product without platform distractions, removes boilerplate, and comes with built-in tools for observability and collaboration.

To get an idea about how it works, take a look at this 5-minutes intruduction video

#deployment #build #provisioning
👍2
​​CUE - (★ 4.6k at GitHub) is an open source data constraint language which aims to simplify tasks involving defining and using data. It is a superset of JSON, allowing users familiar with JSON to get started quickly.

You can use CUE to:

● define a detailed validation schema for your data (manually or automatically from data)
● reduce boilerplate in your data (manually or automatically from schema)
● extract a schema from code
● generate type definitions and validation code
● merge JSON in a principled way
● define and run declarative scripts

#config #configuration #deployment
👍3
​​xlsKubeCtl - (★ 1.9k) an experimental project to use Google Spreadsheet to manage Kubernetes cluster

#kube #devops #deployment
😁3👍1
​​tunnelto.dev - (★ 4.5k at GitHub) - lets you expose your locally running web server via a public URL. Written in Rust. Built completely with async-io on top of tokio.

If you want to expose your localhost for debugging or demonstration purposes, the default option was ngrok. Tunnelto is a simpler, open-source alternative that you can host yourself.

When you run the command tunnelto --port 8000, your localhost is exposed at the tunnelto.dev URL. However, you can also set up your private server and deploy it with any URL you choose.

#deployment #debug
🔥311