Store inventory is a Flask app for store products using a mongodb as database.
Go to mongodb page to download mongodb community server and mongosh.
Use the package manager pip to install the followings modules.
> pip install flask
> pip install pymongo
> pip install flask_pymongo
Use the shell to run mongodb
> mongod
Use mongosh to create database
> mongosh
> use frutas
> db.createCollection("products")