From 40a5a8f6a0824c5e2082909d7249603b141913d8 Mon Sep 17 00:00:00 2001 From: Ferdinando Primerano Date: Wed, 5 Dec 2018 12:29:22 +0000 Subject: [PATCH 1/4] Add Changelog --- CHANGELOG.md | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 CHANGELOG.md diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..93eb7fe7 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,8 @@ +## 0.0.1 + +**Ocean+ Habitats first release** + +* Full user journey implementation +* Dyanimic charts +* Mapbox map with WDPA Carto layer and ArcGIS habitats layers +* Import static stats from file From cc20989046c03823e3529750b6650387d6b0f1f8 Mon Sep 17 00:00:00 2001 From: Stuart Watson Date: Wed, 20 Mar 2019 15:33:10 +0000 Subject: [PATCH 2/4] Added production deploy --- config/deploy/production.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/config/deploy/production.rb b/config/deploy/production.rb index 1ba2bb67..b022f831 100644 --- a/config/deploy/production.rb +++ b/config/deploy/production.rb @@ -1,11 +1,11 @@ set :stage, :production -set :branch, "master" +set :branch, "production-supported" -server "web-production.linode.unep-wcmc.org", user: 'wcmc', roles: %w{app web db} +server "web-supported-production.linode.unep-wcmc.org", user: 'wcmc', roles: %w{app web db} set :application, "ocean-plus-habitats" -set :server_name, "ocean-plus-habitats.web-production.linode.unep-wcmc.org" +set :server_name, "ocean-plus-habitats.web-supported-production.linode.unep-wcmc.org" set :sudo_user, "wcmc" set :app_port, "80" From ad29b8c757197c76349da6b163dc2465890295e8 Mon Sep 17 00:00:00 2001 From: Stuart Watson Date: Wed, 20 Mar 2019 15:36:36 +0000 Subject: [PATCH 3/4] Fixed typo in branch --- config/deploy/production.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/deploy/production.rb b/config/deploy/production.rb index b022f831..a254259d 100644 --- a/config/deploy/production.rb +++ b/config/deploy/production.rb @@ -1,5 +1,5 @@ set :stage, :production -set :branch, "production-supported" +set :branch, "supported-production" server "web-supported-production.linode.unep-wcmc.org", user: 'wcmc', roles: %w{app web db} From 4561f6fa7d5619de58e2203da4434d7a020e5156 Mon Sep 17 00:00:00 2001 From: Stuart Watson Date: Wed, 20 Mar 2019 15:38:33 +0000 Subject: [PATCH 4/4] Fixed wrong version of node --- config/deploy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/deploy.rb b/config/deploy.rb index ea925278..1e79c544 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -6,7 +6,7 @@ set :repo_url, 'https://github.com/unepwcmc/ocean-plus-habitats.git' set :nvm_type, :user # or :system, depends on your nvm setup -set :nvm_node, 'v9.0.0' +set :nvm_node, 'v10.15.1' set :nvm_map_bins, %w{node npm yarn} set :deploy_user, 'wcmc'