Skip to content

A Django / GeoDjango application for sharing lists of places with your friends

Notifications You must be signed in to change notification settings

NearGreenPhilly/placelister

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

42 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

To run this, do the following steps:

Install dependencies

  • Python 2.7 or greater
  • virtualenv
  • PostGRES
  • PostGIS
  • Heroku CLI

Create and activate virtualenv

$ virtualenv listenv

(On Linux / Mac)

$ source listenv/bin/activate

(On Windows)

$ listenv\scripts\activate

Install necessary Python packages

$ pip install -r requirements.txt

Create the database

$ psql

$ CREATE USER kevin PASSWORD 'geodjango';

$ CREATE DATABASE placelist OWNER kevin;

$ CREATE EXTENSION postgis;

Run locally

$ heroku local web

About

A Django / GeoDjango application for sharing lists of places with your friends

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 70.4%
  • HTML 29.2%
  • CSS 0.4%