config file reading logic implemented, project structure refined
This commit is contained in:
25
globals/config.go
Normal file
25
globals/config.go
Normal file
@@ -0,0 +1,25 @@
|
||||
package globals
|
||||
|
||||
import "sync"
|
||||
|
||||
type Config struct {
|
||||
// general
|
||||
LogLevel string `json:"logLevel"`
|
||||
LogFilePath string `json:"logFilePath"`
|
||||
|
||||
// latex
|
||||
LatexEngine string `json:"latexEngine"`
|
||||
LatexSourceFilePath string `json:"latexSourceFilePath"`
|
||||
LatexOutputPath string `json:"latexOutputPath"`
|
||||
|
||||
// webserver
|
||||
WebserverDomain string `json:"webserverDomain"`
|
||||
WebserverSecure bool `json:"webserverSecure"`
|
||||
CertificatePath string `json:"certificatePath"`
|
||||
CertificateKeyPath string `json:"certificateKeyPath"`
|
||||
|
||||
// to prevent competing compiles, not actual configuration
|
||||
ExecutionLock sync.Mutex
|
||||
}
|
||||
var AppConfig Config
|
||||
|
||||
Reference in New Issue
Block a user