Compare commits

..

No commits in common. "581165ca4c2cbefea4b91d64d8e4af28795d1cb6" and "c072fea9a82e460cf60c0920e8c342907e31897b" have entirely different histories.

7 changed files with 15 additions and 117 deletions

1
.gitignore vendored
View File

@ -22,7 +22,6 @@ go.work
# By Reza
build/
dist/
.archive/
.vagrant/
.env

View File

@ -5,24 +5,31 @@ builds:
- CGO_ENABLED=0
goos:
- linux
- darwin
- windows
goarch:
- amd64
- arm64
- arm
goarm:
- 7 # For ARMv7
gitea_urls:
api: https://git.behzadan.ir/api/v1/
# Need a Gitea token with repo access stored in your environment as GITEA_TOKEN.
# If you want to push the release to GitHub, configure the GitHub section.
# You'll need a GitHub token with repo access stored in your environment as GITHUB_TOKEN.
release:
# github:
# owner: yourgithubusername
# name: yourrepositoryname
gitea:
owner: reza
owner: p
name: minitmpl
# If you want to create archives (tar.gz for Linux/Darwin, zip for Windows)
archives:
- format: tar.gz
format_overrides:
- goos: windows
format: zip
files:
- LICENSE
- README.md

View File

@ -1,52 +0,0 @@
PROJECT_NAME := minitmpl
VERSION := $(shell cat VERSION)
BUILD_DIR := build
DIST_DIR := dist
LDFLAGS := "-w -s"
VVERSION := v$(VERSION)
build:
@echo "Building for this platform ..."
@mkdir -p $(BUILD_DIR)
@CGO_ENABLED=0 go build -ldflags=$(LDFLAGS) -o $(BUILD_DIR)/$(PROJECT_NAME) main.go
@echo "Build complete!"
.PHONY: release
release:
@echo "Check if the git working directory is clean"
@if [ -n "$$(git status --porcelain)" ]; then \
echo "Error: The working directory is not clean. Please commit or stash your changes."; \
exit 1; \
fi
@echo "Check if the version tag already exists and does not point to HEAD"
@if git rev-parse $(VVERSION) >/dev/null 2>&1; then \
if ! git describe --tags --exact-match HEAD >/dev/null 2>&1; then \
echo "Error: Version $(VVERSION) is already tagged on a different commit."; \
exit 1; \
fi; \
fi
@echo "Tag the latest commit with the version from VERSION file if not already tagged"
@if ! git describe --tags --exact-match HEAD >/dev/null 2>&1; then \
echo "Latest commit not tagged. Tagging with version from VERSION file..."; \
git tag -a $(VVERSION) -m "Release $(VVERSION)"; \
git push origin $(VVERSION); \
fi
@echo "Set GITEA_TOKEN variable and run goreleaser"
@$(eval GITEA_TOKEN=$(shell pass www/behzadan.ir/git/reza/tokens/dt06-goreleaser))
@goreleaser release
.PHONY: run
run:
go run main.go $(filter-out $@,$(MAKECMDGOALS))
%:
@:
clean:
@echo "Cleaning up..."
@rm -rf ${BUILD_DIR}
@rm -rf ${DIST_DIR}

View File

@ -1,48 +0,0 @@
# MiniTMPL
MiniTMPL is a simple, yet powerful tool designed to render text templates using environment variables. It reads a template from `stdin` and outputs the rendered version to `stdout`, making it an excellent tool for generating configuration files, messages, or any text-based content that requires dynamic data insertion.
## Features
- Reads templates from standard input (`stdin`).
- Renders templates using environment variables.
- Supports basic template functions provided by Go's `text/template` package.
## Getting Started
To use EnvTemplater, clone this repository or download the latest release to your local machine.
### Prerequisites
Ensure you have Go installed on your system. EnvTemplater requires Go 1.14 or higher.
### Building form source
First, clone the repository:
```bash
git clone https://git.behzadan.ir/p/minitmpl.git
cd minitmpl
```
Then, build the program:
```bash
go build -o minitmpl
```
## Usage
To use EnvTemplater, simply pipe a template into the program and it will output the rendered version:
```bash
echo "Hello, {{.USER}}" | ./envtemplater
```
This will replace `{{.USER}}` with the value of the `USER` environment variable.
## License
This project is licensed under its own License - see the [LICENSE](LICENSE) file for details.

View File

@ -1 +0,0 @@
1.2.2

2
go.mod
View File

@ -1,3 +1,3 @@
module git.behzadan.ir/reza/minitmpl
module git.behzadan.ir/p/minitmpl
go 1.22.0

11
main.go
View File

@ -2,7 +2,6 @@ package main
import (
"bufio"
"embed"
"flag"
"fmt"
"os"
@ -10,8 +9,7 @@ import (
"text/template"
)
//go:embed VERSION
var versionFile embed.FS
const version = "1.0.1"
func printHelp() {
helpText := fmt.Sprintf(`
@ -37,12 +35,7 @@ func main() {
// Handle version flag
if *versionFlag {
version, err := versionFile.ReadFile("VERSION")
if err != nil {
fmt.Fprintf(os.Stderr, "Error reading version: %v\n", err)
os.Exit(1)
}
fmt.Println("Version:", strings.TrimSpace(string(version)))
fmt.Println("Version:", version)
os.Exit(0)
}