├── .gitignore ├── 01-simple-python-app ├── LICENSE.txt ├── hello.py ├── manifest.yml └── requirements.txt ├── 02-pydata-spyre-app ├── LICENSE.txt ├── environment.yml ├── manifest.yml └── sine_wave.py ├── 03-services-redis ├── LICENSE.txt ├── main.py ├── manifest.yml └── requirements.txt ├── 04-learning-api ├── LICENSE.txt ├── README.md ├── environment.yml ├── main.py ├── manifest.yml ├── models │ ├── ModelFactory.py │ ├── StandardModels.py │ └── __init__.py └── templates │ └── help.html ├── README.md ├── Slides-Ian_Huston-Getting_Started_With_Cloud_Foundry.pdf └── helper-notes.md /.gitignore: -------------------------------------------------------------------------------- 1 | *.pptx 2 | plan.txt 3 | -------------------------------------------------------------------------------- /01-simple-python-app/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/01-simple-python-app/LICENSE.txt -------------------------------------------------------------------------------- /01-simple-python-app/hello.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/01-simple-python-app/hello.py -------------------------------------------------------------------------------- /01-simple-python-app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/01-simple-python-app/manifest.yml -------------------------------------------------------------------------------- /01-simple-python-app/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | gunicorn 3 | -------------------------------------------------------------------------------- /02-pydata-spyre-app/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/02-pydata-spyre-app/LICENSE.txt -------------------------------------------------------------------------------- /02-pydata-spyre-app/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/02-pydata-spyre-app/environment.yml -------------------------------------------------------------------------------- /02-pydata-spyre-app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/02-pydata-spyre-app/manifest.yml -------------------------------------------------------------------------------- /02-pydata-spyre-app/sine_wave.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/02-pydata-spyre-app/sine_wave.py -------------------------------------------------------------------------------- /03-services-redis/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/03-services-redis/LICENSE.txt -------------------------------------------------------------------------------- /03-services-redis/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/03-services-redis/main.py -------------------------------------------------------------------------------- /03-services-redis/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/03-services-redis/manifest.yml -------------------------------------------------------------------------------- /03-services-redis/requirements.txt: -------------------------------------------------------------------------------- 1 | Flask 2 | gunicorn 3 | redis 4 | -------------------------------------------------------------------------------- /04-learning-api/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/04-learning-api/LICENSE.txt -------------------------------------------------------------------------------- /04-learning-api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/04-learning-api/README.md -------------------------------------------------------------------------------- /04-learning-api/environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/04-learning-api/environment.yml -------------------------------------------------------------------------------- /04-learning-api/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/04-learning-api/main.py -------------------------------------------------------------------------------- /04-learning-api/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/04-learning-api/manifest.yml -------------------------------------------------------------------------------- /04-learning-api/models/ModelFactory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/04-learning-api/models/ModelFactory.py -------------------------------------------------------------------------------- /04-learning-api/models/StandardModels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/04-learning-api/models/StandardModels.py -------------------------------------------------------------------------------- /04-learning-api/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /04-learning-api/templates/help.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/04-learning-api/templates/help.html -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/README.md -------------------------------------------------------------------------------- /Slides-Ian_Huston-Getting_Started_With_Cloud_Foundry.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/Slides-Ian_Huston-Getting_Started_With_Cloud_Foundry.pdf -------------------------------------------------------------------------------- /helper-notes.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ihuston/python-cf-examples/HEAD/helper-notes.md --------------------------------------------------------------------------------