forked from documize/community
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcommunity.go
75 lines (62 loc) · 2.12 KB
/
community.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
// Copyright 2016 Documize Inc. <legal@documize.com>. All rights reserved.
//
// This software (Documize Community Edition) is licensed under
// GNU AGPL v3 http://www.gnu.org/licenses/agpl-3.0.en.html
//
// You can operate outside the AGPL restrictions by purchasing
// Documize Enterprise Edition and obtaining a commercial license
// by contacting <sales@documize.com>.
//
// https://documize.com
// This package provides Documize as a single executable.
package main
import (
"fmt"
"os"
"github.com/documize/community/core/env"
"github.com/documize/community/domain"
"github.com/documize/community/domain/section"
"github.com/documize/community/domain/store"
"github.com/documize/community/edition/boot"
"github.com/documize/community/edition/logging"
"github.com/documize/community/embed"
"github.com/documize/community/server"
"github.com/documize/community/server/web"
)
func main() {
// Runtime stores server/application information.
rt := env.Runtime{}
// Wire up logging implementation.
rt.Log = logging.NewLogger(false)
// Wire up embedded web assets handler.
web.Embed = embed.NewEmbedder()
// Specify the product edition.
rt.Product = domain.Product{}
rt.Product.Major = "3"
rt.Product.Minor = "6"
rt.Product.Patch = "0"
rt.Product.Revision = "191209123639"
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
rt.Product.Edition = domain.CommunityEdition
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)
rt.Log.Info(fmt.Sprintf("Product: %s version %s (build %s)", rt.Product.Title, rt.Product.Version, rt.Product.Revision))
// Setup data store.
s := store.Store{}
// Parse configuration information.
flagsOK := false
rt.Flags, flagsOK = env.LoadConfig()
if !flagsOK {
os.Exit(0)
}
rt.Log.Info("Configuration: " + rt.Flags.ConfigSource)
// Start database init.
bootOK := boot.InitRuntime(&rt, &s)
if bootOK {
// runtime.Log = runtime.Log.SetDB(runtime.Db)
}
// Register document sections.
section.Register(&rt, &s)
// Start web server.
ready := make(chan struct{}, 1) // channel signals router ready
server.Start(&rt, &s, ready)
}