78a6eae0e8
Added the account activation system (just manual activations, email ones are coming later o.o). Changed the benchmark test to an interface{} struct versus a typed one. Changed the compiled template holders from a map of functions to handle variables. Added elses for loops in the template compiler. Added the list setting type. Added friendlier values to the setting page :) Added a link to the profile on the User Manager and new mini-tag mark-up to go with it.
27 lines
650 B
Go
27 lines
650 B
Go
package main
|
|
|
|
// Database details
|
|
var dbhost = "127.0.0.1"
|
|
var dbuser = "root"
|
|
var dbpassword = "password"
|
|
var dbname = "gosora"
|
|
var dbport = "3306" // You probably won't need to change this
|
|
|
|
// Limiters
|
|
var max_request_size = 5 * megabyte
|
|
|
|
// Misc
|
|
var default_route = route_topics
|
|
var default_group = 3
|
|
var activation_group = 5
|
|
var staff_css = " background-color: #ffeaff;"
|
|
var uncategorised_forum_visible = true
|
|
var enable_emails = false
|
|
var site_email = ""
|
|
var smtp_server = ""
|
|
var siteurl = "localhost:8080"
|
|
var noavatar = "https://api.adorable.io/avatars/285/{id}@" + siteurl + ".png"
|
|
var items_per_page = 50
|
|
|
|
// Developer flag
|
|
var debug = false |