Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 479 Bytes

README.md

File metadata and controls

28 lines (16 loc) · 479 Bytes

foundry-flask-example

Demo Flask application to assist onboarding teams to AWS Foundry

Create a virtual environment

python3 -m venv venv

Activate the virtual environment

On Windows

venv\Scripts\activate

On MacOS/Linux

source venv/bin/activate

Generate Requirements

pip install Flask flask-cors
pip freeze > requirements.txt

For Build / Start

python3 -m venv venv
source venv/bin/activate
pip3 install -r requirements.txt