Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ppasq/wfp-geonode
https://github.com/ppasq/wfp-geonode
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/ppasq/wfp-geonode
- Owner: ppasq
- Created: 2013-12-20T08:55:14.000Z (about 11 years ago)
- Default Branch: wfp-project
- Last Pushed: 2014-04-29T13:28:21.000Z (over 10 years ago)
- Last Synced: 2023-07-12T11:01:35.240Z (over 1 year ago)
- Language: CSS
- Size: 2.91 MB
- Stars: 0
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.rst
Awesome Lists containing this project
README
Wfp
========================You should write some docs, it's good for the soul.
Installation
------------Install geonode with::
$ sudo add-apt-repository ppa:geonode/testing
$ sudo apt-get update
$ sudo apt-get install geonode
Create a new template based on the geonode example project.::
$ django-admin startproject my_geonode --template=https://github.com/GeoNode/geonode-project/archive/master.zip -epy,rst
$ sudo pip install -e my_geonode.. note:: You should NOT use the name geonode for your project as it will conflict with the default geonode package name.
Usage
-----Rename the local_settings.py.sample to local_settings.py and edit it's content by setting the SITEURL and SITENAME.
Edit the file /etc/apache2/sites-available/geonode and change the following directive from:
WSGIScriptAlias / /var/www/geonode/wsgi/geonode.wsgi
to:
WSGIScriptAlias / /path/to/my_geonode/my_geonode/wsgi.py
Restart apache::
$ sudo service apache2 restart
Edit the templates in my_geonode/templates, the css and images to match your needs.
In the my_geonode folder run::
$ python manage.py collectstatic