1
0
mirror of https://github.com/osmarks/mycorrhiza.git synced 2024-12-12 05:20:26 +00:00
mycorrhiza/main.go

48 lines
1.1 KiB
Go
Raw Normal View History

2020-08-31 17:52:26 +00:00
//go:generate go get -u github.com/valyala/quicktemplate/qtc
//go:generate qtc -dir=assets
//go:generate qtc -dir=views
//go:generate qtc -dir=tree
2021-05-11 08:33:00 +00:00
// Command mycorrhiza is a program that runs a mycorrhiza wiki.
2020-06-12 16:22:02 +00:00
package main
import (
"github.com/bouncepaw/mycorrhiza/cfg"
2021-04-28 10:12:05 +00:00
"github.com/bouncepaw/mycorrhiza/files"
2020-08-08 20:10:28 +00:00
"github.com/bouncepaw/mycorrhiza/history"
"github.com/bouncepaw/mycorrhiza/hyphae"
2021-02-20 14:03:54 +00:00
"github.com/bouncepaw/mycorrhiza/shroom"
"github.com/bouncepaw/mycorrhiza/user"
"github.com/bouncepaw/mycorrhiza/web"
"log"
"net/http"
"os"
2020-06-12 16:22:02 +00:00
)
func main() {
2020-10-25 15:06:51 +00:00
parseCliArgs()
2021-04-28 10:12:36 +00:00
// It is ok if the path is ""
2021-05-11 08:33:00 +00:00
cfg.ReadConfigFile()
2021-04-28 10:12:36 +00:00
if err := files.CalculatePaths(); err != nil {
log.Fatal(err)
}
2021-05-12 14:08:01 +00:00
log.Println("Running MycorrhizaWiki 1.2.0 indev")
if err := os.Chdir(cfg.WikiDir); err != nil {
2020-08-19 18:54:23 +00:00
log.Fatal(err)
}
log.Println("Wiki storage directory is", cfg.WikiDir)
// Init the subsystems:
hyphae.Index(cfg.WikiDir)
2021-04-28 10:12:05 +00:00
user.InitUserDatabase()
2021-05-11 10:14:00 +00:00
history.Start()
2021-02-20 14:03:54 +00:00
shroom.SetHeaderLinks()
2020-08-08 20:10:28 +00:00
// Network:
go handleGemini()
web.Init()
log.Fatal(http.ListenAndServe("0.0.0.0:"+cfg.HTTPPort, nil))
2020-06-12 16:22:02 +00:00
}