> On a fresh installation of geonode on my local-machine , a > geonode-client folder is created . But when I try to do an installation on > my server , no folder of the name geonode-client is created . I tried > getting the geonode-client as mentioned in the github page but I failed to > build it as it gave this error > > [exec] error: pathspec > 'build/ringo/e0dce2be640fc6fb43a1239d252948d10687ba9c' did not match any > file(s) known to git. > > > BUILD FAILED > /home/palantir/geonode1/src/geonode-client/build.xml:22: exec returned: 1 > > How do I get the geonode-client up and running on the server ?
How are you running/deploying geonode on the server? Did you build a release from source from a recent master checkout? With a recent master checkout/build/deploy, you now need the following alias in your apache config pointing to wherever you have your geonode release tree. Alias /media/ /var/www/geonode/wsgi/geonode/src/GeoNodePy/geonode/media/ This should also be added to your local_settings.py with SITEURL set appropriately (ideally with a trailing slash. GEONODE_CLIENT_LOCATION = SITEURL + 'media/static/' Also, make sure you are looking at the most current deploy docs ... https://github.com/geonode/geonode/blob/master/docs/source/deployment.rst https://github.com/geonode/geonode/blob/master/docs/source/deploy/ubuntu.rst https://github.com/geonode/geonode/blob/master/docs/source/deploy/centos.rst Hope that helps? Jeff
