| 123456789101112131415161718192021 | 
"""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', methods=['POST'])def deploy():    """Run deploy script"""    call(["git", "pull"])    call(["touch", "flask.wsgi"])    return jsonify(True)
 |