Frappe是使用Pytho和MariaDB开发的全栈Web应用框架,集成了服务端和客户端。
使用Frappe创建的应用目录结构:
.├── MANIFEST.i├── README.md├── library_maagemet│ ├── __iit__.py│ ├── cofig│ │ ├── __iit__.py│ │ └── desktop.py│ ├── hooks.py│ ├── library_maagemet│ │ └── __iit__.py│ ├── modules.txt│ ├── patches.txt│ └── templates│ ├── __iit__.py│ ├── geerators│ │ └── __iit__.py│ ├── pages│ │ └── __iit__.py│ └── statics├── licese.txt├── requiremets.txt└── setup.py启动应用:
$ bech start13:58:51 web.1 | started with pid 2213513:58:51 worker.1 | started with pid 2213613:58:51 workerbeat.1 | started with pid 2213713:58:52 web.1 | * Ruig o https://0.0.0.0:8000/13:58:52 web.1 | * Restartig with reloader13:58:52 workerbeat.1 | [2014-09-17 13:58:52,343: INFO/MaiProcess] beat: Startig...访问应用:
登录后界面:
评论