Tweaked the config file to get Travis to work.
This commit is contained in:
parent
c3513fba54
commit
9ad66ac882
12
config.go
12
config.go
|
@ -2,7 +2,7 @@ package main
|
||||||
|
|
||||||
func init() {
|
func init() {
|
||||||
// Site Info
|
// Site Info
|
||||||
site.ShortName = "TS" // This should be less than three letters to fit in the navbar
|
site.ShortName = "Ts" // This should be less than three letters to fit in the navbar
|
||||||
site.Name = "Test Site"
|
site.Name = "Test Site"
|
||||||
site.Email = ""
|
site.Email = ""
|
||||||
site.URL = "localhost"
|
site.URL = "localhost"
|
||||||
|
@ -21,6 +21,13 @@ func init() {
|
||||||
dbConfig.Dbname = "gosora"
|
dbConfig.Dbname = "gosora"
|
||||||
dbConfig.Port = "3306" // You probably won't need to change this
|
dbConfig.Port = "3306" // You probably won't need to change this
|
||||||
|
|
||||||
|
// MySQL Test Database details
|
||||||
|
dbConfig.TestHost = "localhost"
|
||||||
|
dbConfig.TestUsername = "root"
|
||||||
|
dbConfig.TestPassword = "password"
|
||||||
|
dbConfig.TestDbname = "gosora_test" // The name of the test database, leave blank to disable. DON'T USE YOUR PRODUCTION DATABASE FOR THIS. LEAVE BLANK IF YOU DON'T KNOW WHAT THIS MEANS.
|
||||||
|
dbConfig.TestPort = "3306"
|
||||||
|
|
||||||
// Limiters
|
// Limiters
|
||||||
config.MaxRequestSize = 5 * megabyte
|
config.MaxRequestSize = 5 * megabyte
|
||||||
|
|
||||||
|
@ -41,7 +48,7 @@ func init() {
|
||||||
config.ActivationGroup = 5 // Should be a setting in the database
|
config.ActivationGroup = 5 // Should be a setting in the database
|
||||||
config.StaffCSS = "staff_post"
|
config.StaffCSS = "staff_post"
|
||||||
config.DefaultForum = 2
|
config.DefaultForum = 2
|
||||||
config.MinifyTemplates = false
|
config.MinifyTemplates = true
|
||||||
config.MultiServer = false // Experimental: Enable Cross-Server Synchronisation and several other features
|
config.MultiServer = false // Experimental: Enable Cross-Server Synchronisation and several other features
|
||||||
|
|
||||||
//config.Noavatar = "https://api.adorable.io/avatars/{width}/{id}@{site_url}.png"
|
//config.Noavatar = "https://api.adorable.io/avatars/{width}/{id}@{site_url}.png"
|
||||||
|
@ -53,4 +60,5 @@ func init() {
|
||||||
//dev.SuperDebug = true
|
//dev.SuperDebug = true
|
||||||
//dev.TemplateDebug = true
|
//dev.TemplateDebug = true
|
||||||
//dev.Profiling = true
|
//dev.Profiling = true
|
||||||
|
//dev.TestDB = true
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue