Skip to content

Commit e8a27d6

Browse files
committed
Post template install for go-subtree
1 parent b150dff commit e8a27d6

22 files changed

+60
-267
lines changed

.devcontainer/devcontainer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
// Human-readable name that shows up in both VS Code and GoLand
3-
"name": "go-template dev container",
3+
"name": "go-subtree dev container",
44

55
// Official Go 1.24 Bullseye image maintained by the Dev Containers team
66
"image": "mcr.microsoft.com/devcontainers/go:0-1.24-bullseye",

.github/.gitleaks.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
title = "go-template gitleaks config"
1+
title = "go-subtree gitleaks config"
22

33
[allowlist]
44
description = "global allow list"

.github/AGENTS.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ Additional `AGENTS.md` files **may exist in subdirectories** to provide more con
1818

1919
## 🔍 Project Overview
2020

21-
**go-template** is a production-ready scaffold for building new Go libraries with zero setup friction.
21+
**go-subtree** is a production-ready scaffold for building new Go libraries with zero setup friction.
2222
It ships with opinionated defaults that reflect current best practices—clean project layout,
2323
module-aware dependency management, and Makefiles that automate everything from linting and race-condition
2424
testing to snapshot releases. Out of the box, GitHub Actions orchestrate CI/CD: unit tests (with `testify`),
@@ -750,5 +750,5 @@ All contributors are expected to append entries here when making meaningful chan
750750
| Date | Author | Summary of Changes |
751751
|------------|----------|--------------------------------------------------------------|
752752
| 2025-06-30 | @mrz1836 | Added pre-commit hook guidelines and config reference |
753-
| 2025-06-27 | @mrz1836 | Adapted to fix this project go-template |
753+
| 2025-06-27 | @mrz1836 | Adapted to fix this project go-subtree |
754754
> For minor edits (typos, formatting), this log update is optional. For all behavioral or structural changes, log entries are **required**.

.github/IMAGES/go-share-image.png

-27.6 KB
Binary file not shown.

.github/SECURITY.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# 🔐 Security Policy
22

3-
Security is a priority. We maintain a proactive stance to identify and fix vulnerabilities in **go-template**.
3+
Security is a priority. We maintain a proactive stance to identify and fix vulnerabilities in **go-subtree**.
44

55
<br/>
66

@@ -72,6 +72,6 @@ To proactively protect this repository, we use several automated GitHub workflow
7272
- **[Gitleaks Scan](./workflows/check-for-leaks.yml)**: Runs daily and on demand to detect secrets or sensitive data accidentally committed to the repository, helping prevent credential leaks.
7373
- **[OpenSSF Scorecard](./workflows/scorecard.yml)**: Periodically evaluates the repository against OpenSSF Scorecard checks, providing insights and recommendations for improving supply chain security and best practices.
7474

75-
These workflows help us identify, remediate, and prevent security issues as early as possible in the development lifecycle. For more details, see the workflow files in the [`.github/workflows/`](https://github.com/bsv-blockchain/go-template/tree/master/.github/workflows) directory.
75+
These workflows help us identify, remediate, and prevent security issues as early as possible in the development lifecycle. For more details, see the workflow files in the [`.github/workflows/`](https://github.com/bsv-blockchain/go-subtree/tree/master/.github/workflows) directory.
7676

7777
<br/>

.github/SUPPORT.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
# 🛟 Support Guide
22

3-
Need help with **go-template**? You're in the right place. Here’s how to get support, report issues, and stay aligned with project guidelines.
3+
Need help with **go-subtree**? You're in the right place. Here’s how to get support, report issues, and stay aligned with project guidelines.
44

55
<br/>
66

77
## 💬 Questions & Discussion
88

99
Before asking, check the existing threads:
1010

11-
* 🔍 Search [Discussions](https://github.com/bsv-blockchain/go-template/discussions)
11+
* 🔍 Search [Discussions](https://github.com/bsv-blockchain/go-subtree/discussions)
1212
* 🆕 Can’t find what you need? Start a new topic and ask away!
1313

1414
<br/>
@@ -17,7 +17,7 @@ Before asking, check the existing threads:
1717

1818
Found a bug?
1919

20-
1. Check the [issue tracker](https://github.com/bsv-blockchain/go-template/issues) to avoid duplicates.
20+
1. Check the [issue tracker](https://github.com/bsv-blockchain/go-subtree/issues) to avoid duplicates.
2121
2. If it’s new, open an issue with:
2222

2323
* Clear steps to reproduce

.github/sweep.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ branch: master
33
blocked_dirs: []
44
draft: false
55
description: |
6-
go-template is a production-ready starter scaffold for Go libraries that bundles opinionated project structure, module management, and fully automated CI/CD workflows. It integrates GitHub Actions, GoReleaser, comprehensive testing and linting, and security scanning so maintainers can focus on writing code instead of setup and infrastructure.
6+
go-subtree is a production-ready starter scaffold for Go libraries that bundles opinionated project structure, module management, and fully automated CI/CD workflows. It integrates GitHub Actions, GoReleaser, comprehensive testing and linting, and security scanning so maintainers can focus on writing code instead of setup and infrastructure.
77
Sweep AI must follow the repository guidelines in .github/AGENTS.md.
88
rules:
99
- "Read .github/AGENTS.md first; it overrides these rules."

.gitpod.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Gitpod workspace configuration for go-template
1+
# Gitpod workspace configuration for go-subtree
22
# This file creates a repeatable cloud development environment.
33
# It ensures dependencies are installed and the codebase is vetted
44
# and tested on workspace start.

.make/temp.mk

Lines changed: 0 additions & 69 deletions
This file was deleted.

.pre-commit-config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# ----------------------------------------------------------------------
2-
# Pre‑commit Configuration for go-template
2+
# Pre‑commit Configuration for go-subtree
33
#
44
# Purpose: Enforce code quality, security, and COMMENTING RULES defined
55
# in .github/AGENTS.md before any commit reaches the repository.

0 commit comments

Comments
 (0)