代码拉取完成,系统将自动刷新
使用 fork 功能将在后台会为你创建一个与该项目内容一样的同名项目,你可以在这个新项目里自由的修改内容。
建议只在有意向参与改进该项目时使用 fork 功能。
def application(environ, start_response):
status = '200 OK'
response_headers = [('Content-type','text/html')]
start_response(status, response_headers)
return ['<h1>Python Demo</h1><p>Project url: <a href="/git/demothr/python">http://git.fron.com.cn/demothr/python</a></p><p>Guide : <a href="/git/demothr/python#python">http://git.fron.com.cn/demothr/python#python</a></p><iframe src="/git/paas_demo.html" frameborder="0" scrolling="no" width="500px" height="1500px"></iframe>']