- Learning goal 1.
- Learning goal 2.
A 1-2 sentence summary of what will be covered.
This lesson is a code-along, so fork and clone the repo.
Run pipenv install && pipenv shell to generate and enter your virtual
environment.
$ pipenv install && pipenv shellChange into the server directory:
$ cd serverYou can run the application as a script within the server/ directory:
$ python app.pyIf you prefer working in a Flask environment, remember to configure it with the
following commands within the server/ directory:
$ export FLASK_APP=app.py
$ export FLASK_RUN_PORT=5555
$ flask runWhen you complete this lesson, commit and push your work using git to submit.
Discuss the topic of the reading. Break into sections and sub-sections as appropriate to help with the reader's orientation with the material and future referencing.
Discuss the topic of the reading. Break into sections and sub-sections as appropriate to help with the reader's orientation with the material and future referencing.
A short one or two paragraph summary of the contents of the lessons, recapping the learning goals.
# server/app.py