بدون توضیح

Mariano Z. 2b3ed09aa2 dev: automated commit - 2025-05-31 17:55:11 8 ماه پیش
runs 2681786023 dev: automated commit - 2025-05-31 17:53:38 8 ماه پیش
.gitignore f037255a1a dev: automated commit - 2025-05-31 17:04:45 8 ماه پیش
README.md f037255a1a dev: automated commit - 2025-05-31 17:04:45 8 ماه پیش
dev b35d327830 dev: automated commit - 2025-05-31 17:07:41 8 ماه پیش
go.mod b35d327830 dev: automated commit - 2025-05-31 17:07:41 8 ماه پیش
go.sum b35d327830 dev: automated commit - 2025-05-31 17:07:41 8 ماه پیش
main.go 2b3ed09aa2 dev: automated commit - 2025-05-31 17:55:11 8 ماه پیش

README.md

Dev Tool

Simple development script runner that builds itself on first use.

Quick Start

git clone https://git.mz.uy/marianozunino/dev
cd dev
./dev

Usage

./dev run              # Run all scripts
./dev run docker       # Run scripts matching "docker"
./dev ls               # List available scripts
./dev new backup       # Create new script template
./dev push             # Git push with security scan

How It Works

The ./dev script:

  1. Detects your Linux architecture (amd64/arm64)
  2. Builds bin/dev-linux-{arch} if needed
  3. Runs your command

Requirements

  • Linux (any distro)
  • Go installed: sudo pacman -S go (or your distro's equivalent)

File Structure

project/
├── dev*           # Launcher script
├── main.go        # Source code
├── Makefile       # Build helper
├── bin/           # Built binaries
├── runs/          # Your scripts
└── logs/          # Execution logs

That's it! Clone and run ./dev to get started.