Skip to content

Latest commit

 

History

History
32 lines (19 loc) · 1.11 KB

File metadata and controls

32 lines (19 loc) · 1.11 KB

goeco-app-backend

This application was created using django framework which runs on python.

Getting started

Install pip and virtualenv (if not installed yet)

If not already installed, see this documentation on how to install pip, then install virtualenv:

$ [sudo] pip install virtualenv

See the documentation for more.

Install python, django and other libraries

$ virtualenv env
$ source env/bin/activate
(env)$ install -r requirements.txt

Set up mongodb

Follow the steps described here.

To get started

Check out the django rest framework website and django website on how to get started.

If you have everything installed

Run mongodb then navigate to the project folder (goeco/) and on the command line and run:

$ python manage.py runserver

You're good to go!