from chalice import Chalice app = Chalice(app_name='basicapp') @app.route('/') def index(): return {'version': 'original'}