mirror of
https://github.com/documize/community.git
synced 2025-07-19 13:19:43 +02:00
1. handle long username overflow on space permissions screen 2. only show document history to editors 3. removed redundant document editing permission check 4. Ensure subdomain is detected when accepting space invitation
67 lines
1.9 KiB
Go
67 lines
1.9 KiB
Go
// 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"
|
|
|
|
"github.com/documize/community/core/env"
|
|
"github.com/documize/community/domain"
|
|
"github.com/documize/community/domain/section"
|
|
"github.com/documize/community/edition/boot"
|
|
"github.com/documize/community/edition/logging"
|
|
_ "github.com/documize/community/embed" // the compressed front-end code and static data
|
|
"github.com/documize/community/server"
|
|
_ "github.com/go-sql-driver/mysql" // the mysql driver is required behind the scenes
|
|
)
|
|
|
|
var rt env.Runtime
|
|
|
|
func main() {
|
|
// runtime stores server/application level information
|
|
rt := env.Runtime{}
|
|
|
|
// wire up logging implementation
|
|
rt.Log = logging.NewLogger()
|
|
|
|
// product details
|
|
rt.Product = env.ProdInfo{}
|
|
rt.Product.Major = "1"
|
|
rt.Product.Minor = "53"
|
|
rt.Product.Patch = "4"
|
|
rt.Product.Version = fmt.Sprintf("%s.%s.%s", rt.Product.Major, rt.Product.Minor, rt.Product.Patch)
|
|
rt.Product.Edition = "Community"
|
|
rt.Product.Title = fmt.Sprintf("%s Edition", rt.Product.Edition)
|
|
rt.Product.License = env.License{}
|
|
rt.Product.License.Seats = 1
|
|
rt.Product.License.Valid = true
|
|
rt.Product.License.Trial = false
|
|
rt.Product.License.Edition = "Community"
|
|
|
|
// setup store
|
|
s := domain.Store{}
|
|
|
|
// parse settings from command line and environment
|
|
rt.Flags = env.ParseFlags()
|
|
flagsOK := boot.InitRuntime(&rt, &s)
|
|
|
|
if flagsOK {
|
|
// runtime.Log = runtime.Log.SetDB(runtime.Db)
|
|
}
|
|
|
|
// Register smart sections
|
|
section.Register(&rt, &s)
|
|
|
|
ready := make(chan struct{}, 1) // channel signals router ready
|
|
server.Start(&rt, &s, ready)
|
|
}
|