コード例 #1
0
ファイル: __bumpy_main__.py プロジェクト: xtfc/compytition
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
ファイル: build.py プロジェクト: scizzorz/flaskplate
def run():
	'''Run the production server'''
	b.shell('gunicorn -c config.py flaskplate.app:app')