I‘ve designed this workshop as part of a programming bootcamp where I taught Python and a little bit of web development.
-
clone the repo create your virtual environment and initialize it
virtualenv .env && source .env/bin/activate
-
install the requirements
pip install -r requirements.txt
-
add you OpenIA API KEY
-
run the server
flask app
-
go to the hello folder
cd hello
-
install node dependencies
npm install
-
run the frontend project
npm run dev