package main

import (
	"log"
	"text/template"
)

var config RuntimeConfig
var templates *template.Template

func main() {
	log.Printf("Started Ceres recipe server.\n")
	config = GetRuntimeConfig()
	templates = setupTemplates()
	runServer()
}