module
0.0.0-20240921145521-1c7857b15377
Repository: https://github.com/go-hao/utility.git
Documentation: pkg.go.dev
# README
README
Quick Start
- Check how-to
make help
- Customize variables in Makefile for your own project
# ############################################################# #
# Change variables below for your own #
# ############################################################# #
# Project repo address and repo namespace
# The project module name will be: [repo_addr/][repo_name/]project_name
# Comment it out or leave it blank to unset a variable
repo_addr := gitlab.com
repo_name := go-hao
# Project name
# Comment it out or leave it blank for default value (Root folder name of the project)
project_name :=
# Name for main executable of the project
# Comment it out or leave it blank for default value (main)
main_name :=
# Proxy address for GOPROXY
# Do not add https:// or http:// in front of the address
# Comment it out or leave it blank for default value (proxy.golang.org)
proxy_addr := goproxy.cn
- Set go env if needed
make set
- Initialize the project
make go.mod
- Run your project for the first time
make run