This repo contains code for the VertNet webapp.
On the server side, VertNet rides on Google App Engine Python 2.7 runtime, so we need to download and install the latest Python SDK. Add it to your PATH and you are good to go. On the client side it rides on Twitter Bootstrap and RequireJS for pure HTML5, JavaScript, and CSS.
Make sure you have Git installed, and then from the command line:
$ git clone git@github.com:VertNet/webapp.git
That will download the full code repository into a directory named webapp
.
Since the webapp rides on Google App Engine, we can use the local development server. First we'll need some test data. Go into thewebapp
directory, download this file, and unzip it. Then at the command line:
$ dev_appserver.py --storage_path=data app.yaml
Boom! The webapp is now running locally at http://localhost:8080 and you get an admin console at http://localhost:8080/_ah/admin.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see here.