Get started with Python Flask Framework on IBM Bluemix
Get started with Python Flask Framework on IBM Bluemix This work is based on Getting started with Python on Bluemix Tutorial The tutorial will develop a Python web application based on Flask framework and deploy the app on IBM Bluemix . The app shows up a basic form which users can type their names. When hit enter the name will be added to database and can be accessed at http://base_url/api/visitors 1. Requirement Git Cf Python 2. Clone example code and run locally git clone http s: //github. com /IBM-Bluemix/ get -started- python cd get -started- python Rename your app Open up, manifest.yml similar like: applications : - name : Lecheebot random-route : true memory : 128 M Run your app locally Ensure that you have installed pip in your PC. If not, follow this post: pip and setuptool on windows now, you can run your app locally by typing the command: pip install -r requirements....