-
Notifications
You must be signed in to change notification settings - Fork 1.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3812 from geosolutions-it/master
[Backport from master] Deps update and refresh / Re-enable Task !Eager on Async / ImageMosaics support (first step)
- Loading branch information
Showing
100 changed files
with
895 additions
and
690 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -37,7 +37,7 @@ packages | |
.. code-block:: bash | ||
|
||
$ sudo apt-get update | ||
|
||
$ sudo apt-get install python-virtualenv python-dev libxml2 libxml2-dev libxslt1-dev zlib1g-dev libjpeg-dev libpq-dev git default-jdk | ||
$ sudo apt-get install build-essential openssh-server gettext nano vim unzip zip patch git-core postfix | ||
|
||
|
@@ -50,7 +50,7 @@ packages | |
$ sudo apt-get install gcc apache2 libapache2-mod-wsgi libgeos-dev libjpeg-dev libpng-dev libpq-dev libproj-dev libxml2-dev libxslt-dev | ||
$ sudo apt-add-repository ppa:ubuntugis/ubuntugis-testing && sudo apt-get update && sudo apt-get upgrade | ||
$ sudo apt-get install gdal-bin libgdal20 libgdal-dev | ||
$ sudo apt-get install python-gdal python-pycurl python-imaging python-pastescript python-psycopg2 python-urlgrabber | ||
$ sudo apt-get install python-gdal python-pycurl python-imaging python-pastescript python-psycopg2 python-urlgrabber | ||
$ sudo apt-get install postgresql postgis postgresql-9.5-postgis-scripts postgresql-contrib | ||
$ sudo apt-get install tomcat8 | ||
|
||
|
@@ -101,7 +101,7 @@ First of all we need to prepare a new Python Virtual Environment: | |
Let's activate the new `geonode` Python Virtual Environment: | ||
|
||
.. code-block:: bash | ||
|
||
$ workon geonode | ||
|
||
Move into the `geonode` home folder | ||
|
@@ -113,12 +113,12 @@ Move into the `geonode` home folder | |
We are going to install GeoNode as a dependency of a **Customized DJango Project** | ||
|
||
.. note:: | ||
A custom project is a DJango application with *ad hoc* configuration and folders, which allows you to | ||
A custom project is a DJango application with *ad hoc* configuration and folders, which allows you to | ||
extend the original **GeoNode** code without actually dealing or modifying the main source code. | ||
|
||
This will allow you to easily customize your GeoNode instance, modify the theme, add new functionalities and so on, | ||
and also being able to keep updated with the GeoNode latest source code. | ||
|
||
For more deails please check https://github.com/GeoNode/geonode-project/tree/master | ||
|
||
.. code-block:: bash | ||
|
@@ -132,7 +132,7 @@ Let's install the GeoNode dependencies and packages into the Python Virtual Envi | |
|
||
$ cd my_geonode | ||
|
||
# Find the closest pygdal version. | ||
# Find the closest pygdal version. | ||
# Example: 2.2.1 ... 2.2.1.3, ... | ||
$ gdal-config --version && pip install pygdal== | ||
|
||
|
@@ -142,8 +142,8 @@ Let's install the GeoNode dependencies and packages into the Python Virtual Envi | |
-e git://github.com/GeoNode/[email protected]#egg=geonode | ||
pygdal==2.2.1.3 | ||
|
||
$ pip install -r requirements.txt | ||
$ pip install -e . | ||
$ pip install -r requirements.txt --upgrade | ||
$ pip install -e . --upgrade --no-cache | ||
|
||
|
||
In the next section we are going to setup PostgreSQL Databases for GeoNode and finalize the setup |
Oops, something went wrong.