Makefile Generator
Generate Makefiles with common targets (build, test, clean, docker) for various project types.
Project Type Preset
Variables (optional)
Targets
Generated Makefile
APP_NAME := my-app .PHONY: build test lint clean docker-build run .DEFAULT_GOAL := build build: go build -o bin/app ./cmd/app test: go test ./... lint: golangci-lint run clean: rm -rf bin/ docker-build: docker build -t my-app . run: go run ./cmd/app
Related tools
Crontab GeneratorDevOps
Visual crontab expression builder with presets and next run times.
Nginx Config GeneratorDevOps
Generate nginx server block configurations with SSL, gzip, and location blocks.
.htaccess GeneratorDevOps
Generate .htaccess rules for redirects, rewrites, CORS, caching, and error pages.
SSH Config GeneratorDevOps
Generate SSH config entries for ~/.ssh/config with host aliases and keys.
Docker Run Command GeneratorDevOps
Generate docker run commands visually with ports, volumes, and env vars.
Dockerfile GeneratorDevOps
Generate Dockerfiles from language and framework presets for Node.js, Python, Go, Java, and more.