summaryrefslogtreecommitdiff
path: root/main.go
blob: 5f86d3dac3d2f1bade45898ff98a7712bc260e57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package main

import (
	"log"
	"os"
	"path/filepath"
	"text/template"
)

var config RuntimeConfig
var templates *template.Template

func main() {
	log.Printf("Started Ceres recipe server.\n")
	config = GetRuntimeConfig()
	err := os.Mkdir(filepath.Join(config.Data, "recipes"), 0750)
	if err != nil && !os.IsExist(err) {
		log.Fatal(err)
	}
	templates = setupTemplates()
	runServer()
}