The code was released along with the articles published on Freelancer.com's Community webpage:
Project which presents how flask can be used with foundation and with pymongo for web development.
You can run the app using the python app.py
command in the flask_web
directory.
- MongoDB - the default setting is considered that it is installed locally and running on localhost:27017
- Python Libraries
-
virtualenv - using the below commands the virtual env can be started and then the libraries can be installed there
$ virtualenv venv $ source venv/bin/activate
-
without virtualenv
pip install flask pip install pymongo