Skip to content

Commit

Permalink
fix incorrect translation
Browse files Browse the repository at this point in the history
According to #7
  • Loading branch information
spacewander committed Aug 8, 2015
1 parent 906dbec commit f56fc07
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion zh/4-organizing_your_project.md
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ yourapp/
| config.py | 这个文件包含了你的应用需要的大多数配置变量 |
| instance/config.py | 这个文件包含不应该出现在版本控制的配置变量。其中有类似调用密钥和数据库URI连接密码。同样也包括了你的应用中特有的不能放到阳光下的东西。比如,你可能在*config.py*中设定`DEBUG = False`,但在你自己的开发机上的*instance/config.py*设置`DEBUG = True`。因为这个文件可以在*config.py*之后被载入,它将覆盖掉`DEBUG = False`,并设置`DEBUG = True`|
| yourapp/ | 这个包里包括了你的应用。|
| yourapp/\_\_init\_\_.py| 这个文件初始化了你的应用并所有其它的组件组合在一起|
| yourapp/\_\_init\_\_.py| 这个文件初始化了你的应用并把所有其它的组件组合在一起|
| yourapp/views.py | 这里定义了路由。它也许需要作为一个包(*yourapp/views/*),由一些包含了紧密相联的路由的模块组成。|
| yourapp/models.py | 在这里定义了应用的模型。你可能需要像对待*views.py*一样把它分割成许多模块。|
| yourapp/static/ | 这个文件包括了公共CSS, Javascript, images和其他你想通过你的应用展示出去的静态文件。默认情况下人们可以从*yourapp.com/static/*获取这些文件。|
Expand Down
2 changes: 1 addition & 1 deletion zh/5-configuration.md
Original file line number Diff line number Diff line change
Expand Up @@ -187,5 +187,5 @@ python run.py

* 一个简单的应用也许仅需一个配置文件:*config.py*
* instance文件夹可以帮助我们隐藏不愿为人所知的配置变量。
* instance文件夹可以用来将应用的配置替换成当前的变量
* instance文件夹可以用来改变特定环境下的程序配置
* 应对复杂的,基于环境的配置,我们可以结合环境变量和`app.config.from_envvar()`来使用。

0 comments on commit f56fc07

Please sign in to comment.