Skip to content

Instantly share code, notes, and snippets.

@ihuston
Last active February 11, 2023 19:16
Show Gist options
  • Star 15 You must be signed in to star a gist
  • Fork 25 You must be signed in to fork a gist
  • Save ihuston/e87c1d4719f7e72e9760 to your computer and use it in GitHub Desktop.
Save ihuston/e87c1d4719f7e72e9760 to your computer and use it in GitHub Desktop.
Simple Flask application for Cloud Foundry

Simple Python Flask app on Cloud Foundry

This is a (very) simple Flask application that shows how the built-in Python buildpack detection on Cloud Foundry works.

To push to Cloud Foundry, log in and then use

$ cf push myapp-name

Python on Cloud Foundry

Cloud Foundry: http://cloudfoundry.org

  • Python is a first class language
  • Deploy with cf push myapp
  • Scale with cf scale myapp ...

You can try Cloud Foundry by signing up for a free trial at Pivotal Web Services.

"""Cloud Foundry test"""
from flask import Flask
import os
app = Flask(__name__)
port = int(os.getenv("PORT"))
@app.route('/')
def hello_world():
return 'Hello World! I am running on port ' + str(port)
if __name__ == '__main__':
app.run(host='0.0.0.0', port=port)
web: python hello.py
@karthikr87
Copy link

You need to add a proc file to run Flask app on cloud foundry. Please follow this link - https://github.com/swisscom/cf-sample-app-python

@eddiewebb
Copy link

eddiewebb commented Dec 30, 2018

Per flasks own docs the built in server is for development, and is not suitable for production. Instead should be handled by one of the methods described http://flask.pocoo.org/docs/1.0/deploying/#deployment

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment