Skip to content

Latest commit

 

History

History
executable file
·
58 lines (35 loc) · 1.61 KB

File metadata and controls

executable file
·
58 lines (35 loc) · 1.61 KB

UNO Community Partnership Intiative

License: MIT | HitCount

Official repository of the Community Partnership initiative (UNO) Project for Fall 2018 Capstone Class Written in

•	Python 3.7
•	Django 2.1.1
•	PostgreSQL 10.5
•	Google maps API
•	Herokuapp

Getting Started:

  1. Clone the repo on your local machine. Use the command in your git terminal:

    $  git clone https://github.com/IndraTeja/uno-cpi.git
    $  cd uno-cpi
    
  2. Install Python from https://www.python.org/downloads/

    Note: Make sure you have set the right local and environment variables.

  3. Install Django framework using the command:

    pip install django==2.1.1
  4. Next, install the required packages to start the app, using the command:

    pip install -r requirements.txt

    Install shapely package. Click here to download

    Check for your python version and win processor bit 32 bit or 64 bit

    pip install Shapely1.6.4.post1cp37cp37mwin_amd64.whl

Database Migration:

Navigate to the repo directory with manage.py and migrate the database using the commands:

python manage.py makemigrations
python manage.py migrate

Use the below command to start the server and open http://127.0.0.1:8000/ on your browser.

python manage.py runserver