diff --git a/README.md b/README.md index 19d39bd30..b669e8a73 100644 --- a/README.md +++ b/README.md @@ -1,13 +1,13 @@ # Consul -Madrid City Council participation site +Citizen Particition and Open Government Application [![Build Status](https://travis-ci.org/consul/consul.svg?branch=master)](https://travis-ci.org/consul/consul) [![Code Climate](https://codeclimate.com/github/consul/consul/badges/gpa.svg)](https://codeclimate.com/github/consul/consul) [![Dependency Status](https://gemnasium.com/consul/consul.svg)](https://gemnasium.com/consul/consul) [![Coverage Status](https://coveralls.io/repos/consul/consul/badge.svg?branch=master&service=github)](https://coveralls.io/github/consul/consul?branch=master) -This is the opensource code repository of Madrid City government eParticipation website +This is the opensource code repository of the eParticipation website originally developed for the Madrid City government eParticipation website ## Current state diff --git a/README_ES.md b/README_ES.md index 637215a79..d35011d6e 100644 --- a/README_ES.md +++ b/README_ES.md @@ -1,13 +1,13 @@ # Consul -Gobierno abierto del Ayuntamiento de Madrid +Aplicación de Participación Ciudadana y Gobierno Abierto [![Build Status](https://travis-ci.org/consul/consul.svg?branch=master)](https://travis-ci.org/consul/consul) [![Code Climate](https://codeclimate.com/github/consul/consul/badges/gpa.svg)](https://codeclimate.com/github/consul/consul) [![Dependency Status](https://gemnasium.com/consul/consul.svg)](https://gemnasium.com/consul/consul) [![Coverage Status](https://coveralls.io/repos/consul/consul/badge.svg?branch=master&service=github)](https://coveralls.io/github/consul/consul?branch=master) -Este es el repositorio de código abierto de la Aplicación de Participación Ciudadana del Ayuntamiento de Madrid. +Este es el repositorio de código abierto de la Aplicación de Participación Ciudadana Consul, creada originariamente por el Ayuntamiento de Madrid. ## Estado del proyecto diff --git a/config/application.rb b/config/application.rb index 76466329e..395251a52 100644 --- a/config/application.rb +++ b/config/application.rb @@ -6,7 +6,7 @@ require 'rails/all' # you've limited to :test, :development, or :production. Bundler.require(*Rails.groups) -module Participacion +module Consul class Application < Rails::Application # Settings in config/environments/* take precedence over those specified here. # Application configuration should go into files in config/initializers diff --git a/config/database.yml.example b/config/database.yml.example index f2a9d4f6c..2f8b7463f 100644 --- a/config/database.yml.example +++ b/config/database.yml.example @@ -8,7 +8,7 @@ default: &default development: &development <<: *default - database: participacion_development + database: consul_development # The staging, preproduction and production dbs are only needed # for running rake assets:precompile locally before deploying @@ -23,4 +23,4 @@ production: test: <<: *default - database: participacion_test + database: consul_test diff --git a/config/deploy-secrets.yml.example b/config/deploy-secrets.yml.example index 82f739ca8..15869cf51 100644 --- a/config/deploy-secrets.yml.example +++ b/config/deploy-secrets.yml.example @@ -1,25 +1,25 @@ staging: - deploy_to: "/var/www/participacion" + deploy_to: "/var/www/consul" ssh_port: 21 - server: staging.participacion.madrid.es + server: staging.consul.madrid.es user: xxxxx - full_app_name: participacion - server_name: staging.participacion.madrid.es - db_server: postgre.participacion.madrid.es + full_app_name: consul + server_name: staging.consul.madrid.es + db_server: postgre.consul.madrid.es preproduction: - deploy_to: "/var/www/participacion" + deploy_to: "/var/www/consul" ssh_port: 2222 server1: xxx.xxx.xxx.xxx server2: xxx.xxx.xxx.xxx user: xxxxx - full_app_name: participacion + full_app_name: consul db_server: xxx.xxx.xxx.xxx production: - deploy_to: "/var/www/participacion" + deploy_to: "/var/www/consul" ssh_port: 2222 server: xxx.xxx.xxx.xxx user: xxxxx - full_app_name: participacion + full_app_name: consul diff --git a/config/deploy.rb b/config/deploy.rb index 6e2ce8aa2..19d559986 100644 --- a/config/deploy.rb +++ b/config/deploy.rb @@ -10,7 +10,7 @@ set :rails_env, fetch(:stage) set :rvm_ruby_version, '2.2.3' set :rvm_type, :user -set :application, 'participacion' +set :application, 'consul' set :full_app_name, deploysecret(:full_app_name) set :server_name, deploysecret(:server_name) diff --git a/config/initializers/session_store.rb b/config/initializers/session_store.rb index 3e9531631..82ae5c8cf 100644 --- a/config/initializers/session_store.rb +++ b/config/initializers/session_store.rb @@ -1,3 +1,3 @@ # Be sure to restart your server when you modify this file. -Rails.application.config.session_store :cookie_store, key: '_participacion_session' +Rails.application.config.session_store :cookie_store, key: '_consul_session' diff --git a/config/newrelic.yml b/config/newrelic.yml index bd6f54386..804c47140 100644 --- a/config/newrelic.yml +++ b/config/newrelic.yml @@ -14,7 +14,7 @@ common: &default_settings # Your application name. Renaming here affects where data displays in New # Relic. For more details, see https://docs.newrelic.com/docs/apm/new-relic-apm/maintenance/renaming-applications - app_name: Participacion + app_name: Consul # To disable the agent regardless of other settings, uncomment the following: # agent_enabled: false @@ -28,7 +28,7 @@ common: &default_settings # If your application has other named environments, configure them here. development: <<: *default_settings - app_name: Participacion (Development) + app_name: Consul (Development) # NOTE: There is substantial overhead when running in developer mode. # Do not use for production or load testing. @@ -41,7 +41,7 @@ test: staging: <<: *default_settings - app_name: Participacion (Staging) + app_name: Consul (Staging) production: <<: *default_settings