如何在OpenShift上配置webpy和MySQL

时间:2012-06-17 03:03:17

标签: python mysql web.py openshift

我想知道如何在openshift上部署webpy to-do example。这是一个official webpy example,显示如何在openshift上部署webpy应用程序,但这个例子不涉及mysql。任何人都可以向我展示在openshift上部署webpy待办事项示例的演示吗?感谢。

1 个答案:

答案 0 :(得分:2)

创建一个python应用程序:

rhc app create -a webpy -t python-2.7

添加此上游webpy仓库

cd webpy
git remote add upstream -m master https://github.com/openshift/webpy-example.git
git pull -s recursive -X theirs upstream master

然后推回上游的回购

git push

See here more