| 1234567891011121314151617181920 | 
"""Website for Craftbroec RR stuff"""from subprocess import callfrom flask import jsonifyfrom app import app@app.route('/')def index():    """Show index page"""    return jsonify(True)@app.route('/deploy')def deploy():    """Run deploy script"""    call(["git", "pull"])    call(["touch", "flask.wsgi"])    return jsonify(True)
 |