services/magefiles/const.go
Dan Anglin a51db2d523
feat: add environment support
Add support for deploying to different environments.
2023-08-27 04:11:48 +01:00

12 lines
282 B
Go

//go:build mage
package main
const (
configDir string = "./config/"
configFileName string = "services.json"
rootBuildDir string = "./build"
templateExtension string = ".gotmpl"
rootTemplatesDir string = "./templates"
rootAssetsDir string = "./assets"
)