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