generated from blacktop/go-template
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit b5f63fb
Showing
17 changed files
with
538 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
--- | ||
version: 2 | ||
updates: | ||
- package-ecosystem: "gomod" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "dependencies" | ||
commit-message: | ||
prefix: "chore" | ||
include: "scope" | ||
- package-ecosystem: "github-actions" | ||
directory: "/" | ||
schedule: | ||
interval: "weekly" | ||
labels: | ||
- "dependencies" | ||
commit-message: | ||
prefix: "chore" | ||
include: "scope" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# This workflow will build a golang project | ||
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-go | ||
|
||
name: Go | ||
|
||
on: | ||
push: | ||
branches: [ "main" ] | ||
paths-ignore: | ||
- "*.md" | ||
- "*.tape" | ||
- ".github/workflows/goreleaser.yml" | ||
- ".github/workflows/vhs.yml" | ||
|
||
pull_request: | ||
branches: [ "main" ] | ||
|
||
jobs: | ||
|
||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "stable" | ||
|
||
- name: Build | ||
run: go build -v ./... | ||
|
||
- name: Test | ||
run: go test -v ./... |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: goreleaser | ||
|
||
on: | ||
push: | ||
tags: | ||
- v*.*.* | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
goreleaser: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- | ||
name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
- | ||
name: Set up Go | ||
uses: actions/setup-go@v5 | ||
- | ||
name: Run GoReleaser | ||
uses: goreleaser/goreleaser-action@v6 | ||
with: | ||
# either 'goreleaser' (default) or 'goreleaser-pro' | ||
distribution: goreleaser | ||
# 'latest', 'nightly', or a semver | ||
version: '~> v2' | ||
args: release --clean | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# Your GoReleaser Pro key, if you are using the 'goreleaser-pro' distribution | ||
# GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: vhs | ||
on: | ||
push: | ||
paths: | ||
- vhs.tape | ||
- .github/workflows/vhs.yml | ||
|
||
permissions: | ||
contents: write | ||
|
||
jobs: | ||
vhs: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up Go | ||
uses: actions/setup-go@v5 | ||
with: | ||
go-version: "stable" | ||
- name: Build | ||
run: | | ||
sudo go build -o /usr/local/bin/TEMPLATE main.go | ||
- uses: charmbracelet/vhs-action@v2 | ||
with: | ||
path: 'vhs.tape' | ||
- uses: stefanzweifel/git-auto-commit-action@v5 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
with: | ||
commit_message: Update generated VHS GIF | ||
branch: main | ||
commit_user_name: vhs-action 📼 | ||
commit_user_email: [email protected] | ||
commit_author: vhs-action 📼 <[email protected]> | ||
file_pattern: '*.gif' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
# If you prefer the allow list template instead of the deny list, see community template: | ||
# https://github.com/github/gitignore/blob/main/community/Golang/Go.AllowList.gitignore | ||
# | ||
# Binaries for programs and plugins | ||
*.exe | ||
*.exe~ | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
# Test binary, built with `go test -c` | ||
*.test | ||
|
||
# Output of the go coverage tool, specifically when used with LiteIDE | ||
*.out | ||
|
||
# Dependency directories (remove the comment below to include it) | ||
# vendor/ | ||
|
||
# Go workspace file | ||
go.work | ||
go.work.sum | ||
|
||
# env file | ||
.env | ||
|
||
# misc | ||
dist/ | ||
.DS_Store |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
# This is an example .goreleaser.yml file with some sensible defaults. | ||
# Make sure to check the documentation at https://goreleaser.com | ||
|
||
# The lines below are called `modelines`. See `:help modeline` | ||
# Feel free to remove those if you don't want/need to use them. | ||
# yaml-language-server: $schema=https://goreleaser.com/static/schema.json | ||
# vim: set ts=2 sw=2 tw=0 fo=cnqoj | ||
|
||
version: 2 | ||
|
||
before: | ||
hooks: | ||
# You may remove this if you don't use go modules. | ||
- go mod tidy | ||
# you may remove this if you don't need go generate | ||
- go generate ./... | ||
|
||
builds: | ||
- id: default | ||
binary: TEMPLATE | ||
env: | ||
- CGO_ENABLED=0 | ||
goos: | ||
- linux | ||
- windows | ||
- darwin | ||
|
||
universal_binaries: | ||
- replace: false | ||
|
||
archives: | ||
- format: tar.gz | ||
# this name template makes the OS and Arch compatible with the results of `uname`. | ||
name_template: >- | ||
{{ .ProjectName }}_{{ .Version }}_ | ||
{{- if eq .Os "darwin" }}macOS | ||
{{- else if eq .Os "ios" }}iOS | ||
{{- else }}{{ .Os }}{{ end }}_ | ||
{{- if eq .Arch "amd64" }}x86_64 | ||
{{- else if eq .Arch "386" }}i386 | ||
{{- else if eq .Arch "all" }}universal | ||
{{- else }}{{ .Arch }}{{ end }} | ||
# use zip for windows archives | ||
format_overrides: | ||
- goos: windows | ||
format: zip | ||
|
||
changelog: | ||
sort: asc | ||
use: github | ||
groups: | ||
- title: Dependency updates | ||
regexp: '^.*?(.+)\(deps\)!?:.+$' | ||
order: 300 | ||
- title: "New Features" | ||
regexp: '^.*?feat(\(.+\))??!?:.+$' | ||
order: 100 | ||
- title: "Security updates" | ||
regexp: '^.*?sec(\(.+\))??!?:.+$' | ||
order: 150 | ||
- title: "Bug fixes" | ||
regexp: '^.*?(fix|refactor)(\(.+\))??!?:.+$' | ||
order: 200 | ||
- title: "Documentation updates" | ||
regexp: ^.*?docs?(\(.+\))??!?:.+$ | ||
order: 400 | ||
- title: "Build process updates" | ||
regexp: ^.*?(build|ci)(\(.+\))??!?:.+$ | ||
order: 400 | ||
- title: Other work | ||
order: 9999 | ||
filters: | ||
include: | ||
- "^feat.*" | ||
- "^fix.*" | ||
- "^chore.*" | ||
- "^sec.*" | ||
- "^(doc|docs).*" | ||
|
||
release: | ||
footer: | | ||
### Summary | ||
**Full Changelog**: https://github.com/blacktop/TEMPLATE/compare/{{ .PreviousTag }}...{{ .Tag }} | ||
## What to do next? | ||
- Follow us on [Twitter](https://twitter.com/blacktop__) | ||
- Follow us on [Mastodon](https://mastodon.social/@blacktop) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
// Use IntelliSense to learn about possible attributes. | ||
// Hover to view descriptions of existing attributes. | ||
// For more information, visit: https://go.microsoft.com/fwlink/?linkid=830387 | ||
"version": "0.2.0", | ||
"configurations": [ | ||
{ | ||
"name": "Attach to TEMPLATE", | ||
"type": "go", | ||
"debugAdapter": "dlv-dap", | ||
"request": "attach", | ||
"mode": "remote", | ||
"remotePath": "${workspaceFolder}", | ||
"port": 2345, | ||
"host": "127.0.0.1", | ||
"preLaunchTask": "Run headless dlv" // Here ! | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
{ | ||
"version": "2.0.0", | ||
"tasks": [ | ||
{ | ||
"label": "Run headless dlv", | ||
"type": "process", | ||
"command": [ | ||
"dlv", | ||
], | ||
"args": [ | ||
"debug", | ||
"--headless", | ||
"--listen=:2345", | ||
"--api-version=2", | ||
"${workspaceFolder}/main.go", | ||
"--", | ||
"ARGS" | ||
], | ||
"isBackground": true, | ||
"problemMatcher": { | ||
"owner": "go", | ||
"fileLocation": "relative", | ||
"pattern": { | ||
"regexp": "^couldn't start listener:", // error if matched | ||
}, | ||
"background": { | ||
"activeOnStart": true, | ||
"beginsPattern": "^API server listening at:", | ||
"endsPattern": "^Got a connection, launched process" // success if matched | ||
} | ||
} | ||
} | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
The MIT License (MIT) | ||
|
||
Copyright © 2024 blacktop | ||
|
||
Permission is hereby granted, free of charge, to any person obtaining a copy | ||
of this software and associated documentation files (the "Software"), to deal | ||
in the Software without restriction, including without limitation the rights | ||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | ||
copies of the Software, and to permit persons to whom the Software is | ||
furnished to do so, subject to the following conditions: | ||
|
||
The above copyright notice and this permission notice shall be included in | ||
all copies or substantial portions of the Software. | ||
|
||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE | ||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | ||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | ||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | ||
THE SOFTWARE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
.PHONY: bump | ||
bump: | ||
@echo "🚀 Bumping Version" | ||
git tag $(shell svu patch) | ||
git push --tags | ||
|
||
.PHONY: build | ||
build: | ||
@echo "🚀 Building Version $(shell svu current)" | ||
go build -o TEMPLATE main.go | ||
|
||
.PHONY: release | ||
release: | ||
@echo "🚀 Releasing Version $(shell svu current)" | ||
goreleaser build --id default --clean --snapshot --single-target --output dist/TEMPLATE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
<p align="center"> | ||
<a href="https://github.com/blacktop/TEMPLATE"><img alt="TEMPLATE Logo" src="https://raw.githubusercontent.com/blacktop/go-template/main/docs/logo.webp" /></a> | ||
<h1 align="center">go-template</h1> | ||
<h4><p align="center">Go Project Template</p></h4> | ||
<p align="center"> | ||
<a href="https://github.com/blacktop/TEMPLATE/actions" alt="Actions"> | ||
<img src="https://github.com/blacktop/TEMPLATE/actions/workflows/go.yml/badge.svg" /></a> | ||
<a href="https://github.com/blacktop/TEMPLATE/releases/latest" alt="Downloads"> | ||
<img src="https://img.shields.io/github/downloads/blacktop/TEMPLATE/total.svg" /></a> | ||
<a href="https://github.com/blacktop/TEMPLATE/releases" alt="GitHub Release"> | ||
<img src="https://img.shields.io/github/release/blacktop/TEMPLATE.svg" /></a> | ||
<a href="http://doge.mit-license.org" alt="LICENSE"> | ||
<img src="https://img.shields.io/:license-mit-blue.svg" /></a> | ||
</p> | ||
<br> | ||
|
||
## Why? 🤔 | ||
|
||
<!-- Fill this out --> | ||
|
||
## Getting Started | ||
|
||
### Install | ||
|
||
```bash | ||
go install github.com/blacktop/go-template@latest | ||
``` | ||
|
||
<!-- Fill this out --> | ||
|
||
![demo](vhs.gif) | ||
|
||
## License | ||
|
||
MIT Copyright (c) <YEAR> **blacktop** |
Oops, something went wrong.