https://github.com/go-faster/template
Template for go-faster projects
https://github.com/go-faster/template
Last synced: 8 months ago
JSON representation
Template for go-faster projects
- Host: GitHub
- URL: https://github.com/go-faster/template
- Owner: go-faster
- License: apache-2.0
- Created: 2023-04-23T04:48:32.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-11-28T06:06:57.000Z (11 months ago)
- Last Synced: 2025-02-01T07:44:26.421Z (9 months ago)
- Language: Shell
- Homepage:
- Size: 66.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- Contributing: CONTRIBUTING.md
- License: LICENSE
- Code of conduct: CODE_OF_CONDUCT.md
- Security: .github/SECURITY.md
- Support: .github/SUPPORT.md
Awesome Lists containing this project
README
# template
Project template
## Untemplate
Easiest way:
```bash
gh repo clone go-faster/template
```
```bash
export NAME=your-project-name
```
```bash
cp -r template "${NAME}"
cd "${NAME}"
rm -rf .git .idea
git init
git commit -m "feat: init repo" --allow-empty
./template.sh
git add .
git commit -m "feat: init project"
gh repo create --source . --public "go-faster/${NAME}"
git push -u origin main
```