示例#1
0
def setup():
	'''Run standard setup tasks'''
	b.shell('git submodule init')
	b.shell('git submodule update')
示例#2
0
文件: build.py 项目: scizzorz/bumpy
def output():
	if b.age('input.txt') < b.age('output.txt'):
		b.shell('cp input.txt output.txt')
示例#3
0
def run():
	'''Run the production server'''
	b.shell('gunicorn -c config.py flaskplate.app:app')