This guide will help set up your django project to use ReactJS
- django-webpack-loader==0.4.1 ( Connects Django project with Webpack)
| # Your init script | |
| # | |
| # Atom will evaluate this file each time a new window is opened. It is run | |
| # after packages are loaded/activated and after the previous editor state | |
| # has been restored. | |
| # | |
| # An example hack to make opened Markdown files always be soft wrapped: | |
| # | |
| # path = require 'path' | |
| # |
| # GeoNode / GeoServer install for Docker | |
| # Save file as Dockerbuild; run sudo | |
| # VERSION 0.0.1 | |
| # TEST = 'foo' | |
| FROM ubuntu | |
| MAINTAINER Derek Hohls <dhohls@csir.co.za> | |
| # make sure the package repository is up to date | |
| RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list |
| # GeoNode / GeoServer install for Docker | |
| # Save file as Dockerbuild; sudo docker build -t ubuntu/testgeo3 . | |
| # VERSION 1.0.0 | |
| FROM ubuntu | |
| MAINTAINER Derek Hohls <dhohls@csir.co.za> | |
| # make sure the package repository is up to date | |
| RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list | |
| RUN apt-get update |
There are a bunch of reasons why this is convoluted, mostly in building the URL to make the request:
info_format parameter in the request. We don't know a priori which will be supported by a WMS that we might make a request to. See Geoserver's docs for what formats are available from Geoserver. That won't be the same from WMS to WMS, however.Notes to install strabon on Ubuntu 14.04 following this : http://www.strabon.di.uoa.gr/node/20
** At Installing PostgreSQL and PostGIS **
Install postgresql-9.3 and postgis 2.1 by running (not sure?) :
sudo apt-get install postgresql
| #!/bin/bash | |
| # | |
| # Install Postgres 9.2, PostGIS and create PostGIS template on an Ubuntu 12.04 Server | |
| # add official postgresql.org ubuntu repos (http://wiki.postgresql.org/wiki/Apt) | |
| # Create /etc/apt/sources.list.d/pgdg.list. The distributions are called codename-pgdg. | |
| echo "deb http://apt.postgresql.org/pub/repos/apt/ precise-pgdg main" | sudo tee /etc/apt/sources.list.d/pgdg2.list | |
| # Import the repository key from http://apt.postgresql.org/pub/repos/apt/ACCC4CF8.asc, update the package lists, and start installing packages: |
| # GeoNode / GeoServer install for Docker | |
| # Save file as Dockerbuild; sudo docker build -t ubuntu/testgeo3 . | |
| # VERSION 1.0.0 | |
| FROM ubuntu | |
| MAINTAINER Derek Hohls <dhohls@csir.co.za> | |
| # make sure the package repository is up to date | |
| RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list | |
| RUN apt-get update |
| # GeoNode / GeoServer install for Docker | |
| # Save file as Dockerbuild; run sudo | |
| # VERSION 0.0.1 | |
| # TEST = 'foo' | |
| FROM ubuntu | |
| MAINTAINER Derek Hohls <dhohls@csir.co.za> | |
| # make sure the package repository is up to date | |
| RUN echo "deb http://archive.ubuntu.com/ubuntu precise main universe" > /etc/apt/sources.list |
| #!/bin/bash | |
| # setup repository | |
| sudo wget -qO- http://apt.opengeo.org/gpg.key | apt-key add - | |
| sudo chmod 655 /etc/apt/sources.list | |
| sudo echo "deb http://apt.opengeo.org/ubuntu lucid main" >> /etc/apt/sources.list | |
| sudo chmod 644 /etc/apt/sources.list | |
| sudo apt-get update | |
| # install opengeo suite |