38 lines
761 B
Go
38 lines
761 B
Go
package globals
|
|
|
|
import (
|
|
"os"
|
|
"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"`
|
|
Timezone string `json:"timezone"`
|
|
}
|
|
var AppConfig Config
|
|
|
|
|
|
type LatexExecution struct {
|
|
ExecutionLock sync.Mutex
|
|
ExecutionState string
|
|
Timestamp string
|
|
Output []byte
|
|
}
|
|
var LatexExec LatexExecution
|
|
|
|
var LogFile *os.File
|
|
|