seitime-frappe/frappe/docs/user/zh/tutorial/app.md
2018-04-10 22:53:42 -08:00

9 lines
No EOL
651 B
Markdown
Executable file
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 什么是应用
Frappe 中的应用只是标准的 Python 应用。 您可以采用与标准 Python 应用相同的方式来构造 Frappe 应用。 对于部署Frappe 使用标准的 Python Setuptools因此您可以在任何计算机上轻松地进行应用移植和安装。
Frappe 框架提供了 WSGI 接口,您可以使用内置的 Werkzeug 服务进行开发。 对于生产环境的实施,我们建议使用 Nginx 和 Gunicorn。
Frappe 也拥有多租户架构。 这意味着您可以在安装中运行多个 "站点",每个都可以为不同的应用和用户提供服务。 每个站点的数据库也是独立的。
{next}