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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "bento/ubuntu-16.04" | |
config.vm.network "private_network", ip: "192.168.33.11" | |
config.vm.provider "virtualbox" do |vb| |
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
-- | |
-- PostgreSQL database dump | |
-- | |
-- Dumped from database version 9.3.15 | |
-- Dumped by pg_dump version 9.5.1 | |
-- Started on 2018-02-21 20:48:10 CET | |
SET statement_timeout = 0; |
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
# Install geonode OSX 10.14.1 | |
mkdir -p ~/pyenv | |
virtualenv ~/pyenv/geonode | |
source ~/pyenv/geonode/bin/activate | |
git clone https://github.com/GeoNode/geonode | |
cd geonode | |
pip install GDAL==2.3.2 lxml==4.2.5 paver celery==4.1.0 |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu/xenial64" | |
config.vm.network "private_network", ip: "192.168.33.13" | |
config.vm.provider "virtualbox" do |vb| |
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
$ cd my_geonode | |
# install pip requirements line by line and exclude pygdal | |
$ cat requirements.txt | grep -v "pygdal" | xargs -n 1 pip install | |
# install geonode project | |
$ pip install -e git://github.com/GeoNode/[email protected]#egg=geonode | |
$ pip install -e . | |
# install the correct pygdal version |
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
#!/bin/bash | |
option=$1 | |
geonodeBackup='/home/geonode_backups' | |
mkdir $geonodeBackup | |
date=$(date +%Y-%m-%d-%H) | |
function stopServices | |
{ | |
echo "Stopping services" | |
sudo service apache2 stop |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "t-book/geonode-project_2.8" | |
config.vm.network "private_network", ip: "192.168.33.13" | |
config.vm.provider "virtualbox" do |vb| | |
vb.memory = "4024" |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "t-book/geonode_28_base" | |
config.vm.box_version = "1.0.0" | |
config.vm.network "private_network", ip: "192.168.33.14" | |
config.vm.provider "virtualbox" do |vb| | |
vb.memory = "4024" |
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
# -*- mode: ruby -*- | |
# vi: set ft=ruby : | |
Vagrant.configure(2) do |config| | |
config.vm.box = "ubuntu/trusty64" | |
#config.vm.provision :shell, path: "bootstrap.sh" | |
config.vm.network "private_network", ip: "192.168.33.10" | |
OlderNewer