Building a basic Flask application
Before we begin adding any additional features such as a database to an application, we have to ensure that that we can get a basic Flask application up and running with everything that we need. This application will take in a number and return a Fibonacci number. Additionally, we will need to make sure that this application can run in its own Docker container if we were to deploy it. By the end of this section, our application should have the following structure:
├── deployment │ ├── docker-compose.yml │ └── nginx │ ├── Dockerfile │ └── nginx.conf ├── src │ ├── Dockerfile │ ├── __init__.py...