Skip to content

nixilla/where-is-when-is

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

71 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Konekta web service

Geolocate health services and make them available through a mobile site.

Installation

First, clone the repository like this:

git clone https://github.com/konekta/where-is-when-is.git whereiswhenis && \
cd whereiswhenis

Create a new virtual environment

virtualenv env
. env/bin/activate

Then install requirements

pip install -r requirements.txt

Make sure you have postgis installed. Use version 1.5.3. Version 2 doesn't like Django. Once you install it, make sure you enable it on your database.

Copy the sample local_settings file for your local machine like this:

cp konekta/local_settings.py.example konekta/local_settings.py

Edit your local_settings.py and add your database login, password, host and port if needed.

Now set up the datebase:

python manage.py syncdb
python manage.py migrate

To load data use shell:

python manage.py shell

And then in that shell:

from world import load
load.run()
# Ctrl+D to exit

And run your app:

python manage.py runserver 0.0.0.0:8000

About

Geodjango bootstrap integration

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 73.9%
  • JavaScript 26.1%