Diary is simple diary web based application developed with Python, Flask, MongoDB and love.
First clone or download this repository:
$ git clone git@github.com:GruPy-RN/agenda_flask.gitthe next step is create a virtualenv to install all dependencies to:
$ cd agenda_flask
$ vritualenv --no-site-packages .venv
$ source .venv/bin/activateonce the virtualenv is created and activated, we can install all dependencies with pip:
$ pip install -r requirementsDon't forget to set the MONGO_URI environment variable like so:
$ export MONGO_URI='mongodb://username:password@host:27017/diary'Now, start the server and have fun!
$ python manage.py runserver