4

我想知道如何在 openshift 上部署webpy to-do 示例。这是一个官方的 webpy 示例,展示了如何在 openshift 上部署 webpy 应用程序,但此示例不处理 mysql。任何人都可以向我展示在 openshift 上部署 webpy 待办事项示例的演示吗?谢谢。

4

1 回答 1

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

然后将 repo 推送到上游

git push

看这里更多

于 2013-08-22T12:49:26.287 回答