Skip to content

Latest commit

 

History

History
28 lines (20 loc) · 1.01 KB

README.md

File metadata and controls

28 lines (20 loc) · 1.01 KB

flask_web

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.

Running the app

You can run the app using the python app.py command in the flask_web directory.

Prerequisits

  1. MongoDB - the default setting is considered that it is installed locally and running on localhost:27017
  2. 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