| 123456789101112131415161718192021 |
- """
- Website for Craftbroec RR stuff
- """
- from subprocess import call
- from flask import jsonify
- from 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)
|