This code used to power https://geojsonlint.com - I let the domain registration expire but someone else picked it up and forked this code to keep it running. Any changes to this repo will not be reflected at https://geojsonlint.com, I'm not even sure who manages that domain.
A simple Django app to validate your GeoJSON.
- Clone the repo and cd into it
- Create a python virtual environment
virtualenv venv --distribute
- Source to the virtual environment
source venv/bin/activate
- Install requirements
pip install -r requirements.txt
- Run the server
python manage.py runserver
- Enjoy http://localhost:8000
Since this is a simple web app with no database requirements, a custom test runner is defined in settings (TEST_RUNNER = 'testrunner.NoDbTestRunner'
) so there are no database setup or teardown.
- Source to the virtual environment
source venv/bin/activate
- python manage.py test geojsonlint