Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ppasq/sy-template
GeoNode custom template
https://github.com/ppasq/sy-template
Last synced: about 1 month ago
JSON representation
GeoNode custom template
- Host: GitHub
- URL: https://github.com/ppasq/sy-template
- Owner: ppasq
- Created: 2013-07-03T08:57:08.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-10-08T15:43:56.000Z (about 11 years ago)
- Last Synced: 2023-07-12T11:01:35.864Z (over 1 year ago)
- Language: CSS
- Homepage:
- Size: 574 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
GeoNode Template
========================Custom template for GeoNode 2.0
Installation
------------Create a new virtualenv for {{ project_name }}, install GeoNode and setup your project::
$ mkvirtualenv my_geonode
$ pip install Django
$ django-admin.py startproject my_geonode --template=https://github.com/GeoNode/geonode-project/archive/master.zip -epy,rst
$ pip install -e my_geonodeTo install the latest from GeoNode's master branch use the following command::
$ pip install -e git+https://github.com/GeoNode/geonode.git#egg=geonode --upgrade
.. note:: You should NOT use the name geonode for your project as it will conflict with the default geonode package name.
Usage
-----Setup your GeoNode for usage. Download a geoserver.war to use and start the development server::
$ cd my_geonode
$ paver setup # downloads geoserver
$ paver start