Compare commits
5 Commits
v0.2.0
...
e65633a85a
| Author | SHA1 | Date | |
|---|---|---|---|
| e65633a85a | |||
| d53ad8993c | |||
| 7b7fdc0113 | |||
| b010d63351 | |||
| c5447a68ae |
19
Makefile
19
Makefile
@@ -24,6 +24,8 @@ endif
|
||||
# Variables
|
||||
#----------------------------------------------------------------
|
||||
progName = scaffold
|
||||
arch = amd64
|
||||
winbinName = $(progName).exe
|
||||
|
||||
#----------------------------------------------------------------
|
||||
# Helpers
|
||||
@@ -57,11 +59,18 @@ prep: clean
|
||||
> date +"%F %a %T %Z" > buildTime.txt
|
||||
> git describe --always --tags --dirty --long > buildVersion.txt
|
||||
|
||||
build: prep
|
||||
> @go build -o build/$(progName) . && echo "Build success" || echo "[FAILED] go build"
|
||||
build: prep linux windows
|
||||
|
||||
build-production: prep
|
||||
> @go build -ldflags=${linkerflags} -o build/$(progName) . && echo "production build success" || echo "[FAILED] production build"
|
||||
linux:
|
||||
> @GOOS=$@ GOARCH=$(arch) go build -o build/$@/$(progName) . && echo $@ "Build success" || echo $@ "[FAILED] go build"
|
||||
|
||||
windows:
|
||||
> @GOOS=$@ GOARCH=$(arch) go build -o build/$@/$(winbinName) . && echo $@ "Build success" || echo $@ "[FAILED] go build"
|
||||
|
||||
build-production: prep linx-production
|
||||
|
||||
linux-production:
|
||||
> @GOOS=linx GOARCH=$(arch) go build -ldflags=${linkerflags} -o build/$@/$(progName) . && echo "production build success" || echo "[FAILED] production build"
|
||||
|
||||
#-------------------------------------------------------------
|
||||
# Install - same as build, but places binary on system path
|
||||
@@ -74,4 +83,4 @@ install-production: prep
|
||||
> @go install -ldflags=${linkerflags} . && echo "Production build and install success" || echo "[FAILED] Production install"
|
||||
|
||||
## Commands that don't relate to a specific file
|
||||
.PHONY: help confirm clean prep build build-production
|
||||
.PHONY: help confirm clean prep build build-production linux windows amd64
|
||||
@@ -1,6 +1,7 @@
|
||||
# scaffold
|
||||
|
||||
## Intro
|
||||
Use scaffold to setup a new project with a directory skeleton of your design, and if you'd like, it can also automatically initialize local, remote and gitea git repositories for the new project.
|
||||
|
||||
## Git
|
||||
|
||||
|
||||
@@ -11,85 +11,6 @@ scaffold go NewGoProject
|
||||
scaffold py aPythonProject
|
||||
`
|
||||
|
||||
// var gi_template = `%s
|
||||
// .env
|
||||
// *.env
|
||||
// .env.toml
|
||||
|
||||
// cfg/*.toml
|
||||
// cfg/.env
|
||||
// cfg/*.env
|
||||
// cfg/.env*
|
||||
// *.toml
|
||||
|
||||
// build/
|
||||
// buildTime.txt
|
||||
// buildVersion.txt
|
||||
// `
|
||||
|
||||
// var gi_py_template = `%s
|
||||
// .env
|
||||
// *.env
|
||||
// .env.toml
|
||||
|
||||
// cfg/*.toml
|
||||
// cfg/.env
|
||||
// cfg/*.env
|
||||
// cfg/.env*
|
||||
// *.toml
|
||||
|
||||
// bin/
|
||||
// `
|
||||
|
||||
// var cfg_content = `# New Go Project configuration file
|
||||
|
||||
// # Format: TOML - see https://toml.io for details
|
||||
|
||||
// # Go specific
|
||||
// # Go module path is of the form basePath/projectName
|
||||
// # must be addressable if you are going to publish
|
||||
// module_basepath = "officallygood.com"
|
||||
|
||||
// # where to put new project directories
|
||||
// # within the user's home directory
|
||||
// projects_basedir = "devel/GoMyApps"
|
||||
// #def_project_name = "new-go-project"
|
||||
|
||||
// # Must be string, will be parsed to correct type
|
||||
// # Remember perms are in octal
|
||||
// project_dir_permissions = "0700"
|
||||
// file_permissions = "0660"
|
||||
|
||||
// # Git
|
||||
// setup_git = true
|
||||
|
||||
// # Do you have a remote location?
|
||||
// # Do you have autologins setup correctly with ssh keys?
|
||||
// # Using your .ssh/config file might be helpful
|
||||
|
||||
// # setup remote repo?
|
||||
// create_remote_repo = false
|
||||
|
||||
// # remote repo user@location
|
||||
// remote_user = "user@server"
|
||||
|
||||
// # remote repo base dir
|
||||
// # relative to remote user home dir
|
||||
// # eg unix/linux server
|
||||
// # for user@server:/home/user/git -- absolute path
|
||||
// user@server:git -- relative to home dir
|
||||
// # eg windows server
|
||||
// # ???
|
||||
|
||||
// ############################
|
||||
// # remote location MUST already exist on remote server
|
||||
// ############################
|
||||
// remote_location = "git"
|
||||
|
||||
// # default remote short name
|
||||
// remote_shortname = "origin"
|
||||
//`
|
||||
|
||||
var cfg_content = `# Scaffold program configuration
|
||||
|
||||
# Format: TOML - see https://toml.io for details
|
||||
|
||||
11
main.go
11
main.go
@@ -10,6 +10,7 @@ import (
|
||||
"os/exec"
|
||||
"os/user"
|
||||
"path/filepath"
|
||||
"runtime"
|
||||
"strconv"
|
||||
|
||||
"github.com/BurntSushi/toml"
|
||||
@@ -60,6 +61,15 @@ func main() {
|
||||
if *infoFlag || *infoFlag2 {
|
||||
fmt.Printf("Scaffold version: %s", buildVersion)
|
||||
fmt.Printf("Built: %s\n", buildTime)
|
||||
|
||||
if runtime.GOOS == "windows" {
|
||||
fmt.Println("It's a windows system")
|
||||
}
|
||||
|
||||
ucfgd, err := os.UserConfigDir()
|
||||
ifFerr("Unable to determine user config directory", err)
|
||||
fmt.Println("System says -- user config directory: ", ucfgd)
|
||||
|
||||
os.Exit(0)
|
||||
}
|
||||
|
||||
@@ -84,6 +94,7 @@ func main() {
|
||||
_, err = cfgfd.WriteString(cfg_content)
|
||||
ifFerr("Unable to write scaffold configuration file content", err)
|
||||
fmt.Println("Wrote new scaffold configuration file")
|
||||
|
||||
_, err = toml.Decode(cfg_content, &setup)
|
||||
ifFerr("[Failed] to parse config file", err)
|
||||
} else {
|
||||
|
||||
Reference in New Issue
Block a user