1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-25 05:24:13 +00:00

Update Quickstart.md

This commit is contained in:
marswj 2013-07-28 11:14:04 +08:00
parent 1d7d6c6f99
commit 07ce3fb8ea

View File

@ -97,11 +97,11 @@ It generates folders and files for your project, directory structure as follows:
Beego uses development mode as default, you can use following code to change mode in your application:
beego.RunMode = "pro"
beego.RunMode = "prod"
Or use configuration file in `conf/app.conf`, and input following content:
runmode = pro
runmode = prod
No differences between two ways.