Skip to content
GeorgeNava edited this page Jul 6, 2011 · 2 revisions

How to set up some initial configuration?

Right now there is not much to configure, it works perfectly as it is. The only thing you may need to configure is your templates and media folders in the case you use them, as you surely will if your app starts growing. So just set them in config.go like this:

var Config = Settings {
    Debug     : true,
    Root      : "*",
    Media     : "/media",
    Templates : "/templates",
}

Right now debug and root have no effect in the app but later on, as we add more features, they will be needed.

Clone this wiki locally