The code listings in this book can be found under chapter06 directory at https://github.com/PacktPublishing/Hands-On-Enterprise-Application-Development-with-Python.
The code samples can be cloned by running the following command:
git clone https://github.com/PacktPublishing/Hands-On-Enterprise-Application-Development-with-Python
The chapter aims to build a scalable bug tracking web application. To achieve this, we use quite a lot of pre-existing libraries and tools that are openly available and well tested to suit various use cases over time. The following set of tools will be required to build and run the demo application:
- PostgreSQL 9.6 or above
- Python 3.6 or above
- Flask—Microframework for web development in Python
Any other dependencies that may be required for the application to run properly are already specified in the requirements...