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.git
the next step is create a virtualenv to install all dependencies to:
$ cd agenda_flask
$ vritualenv --no-site-packages .venv
$ source .venv/bin/activate
once the virtualenv is created and activated, we can install all dependencies with pip:
$ pip install -r requirements
Don'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