Exemplo n.º 1
0
def setup():
	'''Run standard setup tasks'''
	b.shell('git submodule init')
	b.shell('git submodule update')
Exemplo n.º 2
0
def output():
	if b.age('input.txt') < b.age('output.txt'):
		b.shell('cp input.txt output.txt')
Exemplo n.º 3
0
def run():
	'''Run the production server'''
	b.shell('gunicorn -c config.py flaskplate.app:app')