Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/panmax/leancloud-medical
部署在leancloud上的病历系统
https://github.com/panmax/leancloud-medical
Last synced: 3 days ago
JSON representation
部署在leancloud上的病历系统
- Host: GitHub
- URL: https://github.com/panmax/leancloud-medical
- Owner: Panmax
- License: mit
- Created: 2015-11-11T13:34:10.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2015-11-11T13:40:02.000Z (about 9 years ago)
- Last Synced: 2024-12-01T12:18:00.575Z (2 months ago)
- Language: JavaScript
- Size: 0 Bytes
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# 部署在leancloud上的病历系统
## 本地运行
首先确认本机已经安装 [Python](http://python.org/)2.7 运行环境。然后执行下列指令:
```
$ git clone [email protected]:leancloud/python-getting-started.git
$ cd python-getting-started
```准备启动文件:
```
$ cp start.sh.example start.sh
$ chmod +x start.sh
```将 app id 等信息更新到 `start.sh` 文件中:
```
export LC_APP_ID=
export LC_APP_KEY=
export LC_APP_MASTER_KEY=
```启动项目:
```
$ ./start.sh
```应用即可启动运行:[localhost:3000](http://localhost:3000)
## 部署到 LeanEngine
首先确认本机已经安装 [LeanCloud 命令行工具](https://leancloud.cn/docs/cloud_code_commandline.html)。
部署到测试环境:
```
$ avoscloud deploy
```部署到生产环境:
```
$ avoscloud publish
```## 相关文档
* [LeanEngine 指南](https://leancloud.cn/docs/leanengine_guide.html)
* [Python SDK 指南](https://leancloud.cn/docs/python_guide.html)
* [Python SDK API](https://leancloud.cn/docs/api/python/index.html)
* [命令行工具详解](https://leancloud.cn/docs/cloud_code_commandline.html)
* [LeanEngine FAQ](https://leancloud.cn/docs/cloud_code_faq.html)