diff --git a/CUSTOMIZE_EN.md b/CUSTOMIZE_EN.md index 5b35d6c8f..13e5d2355 100644 --- a/CUSTOMIZE_EN.md +++ b/CUSTOMIZE_EN.md @@ -68,6 +68,7 @@ In order to make changes to any CSS selector (custom style sheets), you can add background: red; } ``` + If you want to change any [foundation](http://foundation.zurb.com/) variable, you can do it at the `app/assets/stylesheets/_custom_settings.scss` file. For example to change the main application color just add: ```css diff --git a/CUSTOMIZE_ES.md b/CUSTOMIZE_ES.md index 72bac906f..e3edf6c2b 100644 --- a/CUSTOMIZE_ES.md +++ b/CUSTOMIZE_ES.md @@ -68,6 +68,7 @@ Si quieres cambiar algun selector CSS (de las hojas de estilo) puedes hacerlo en background: red; } ``` + Si quieres cambiar alguna variable de [foundation](http://foundation.zurb.com/) puedes hacerlo en el fichero `app/assets/stylesheets/_custom_settings.scss`. Por ejemplo para cambiar el color general de la aplicación puedes hacerlo agregando: ```css diff --git a/README.md b/README.md index 6a1bb19ac..e340de37a 100644 --- a/README.md +++ b/README.md @@ -45,6 +45,7 @@ RAILS_ENV=test rake db:setup ``` Run the app locally: + ``` bin/rails s diff --git a/README_ES.md b/README_ES.md index af7f79bfe..a6b91d0f9 100644 --- a/README_ES.md +++ b/README_ES.md @@ -45,6 +45,7 @@ RAILS_ENV=test rake db:setup ``` Para ejecutar la aplicación en local: + ``` bin/rails s ``` diff --git a/doc/en/dev_test_setup_linux.md b/doc/en/dev_test_setup_linux.md index 878a501a2..09f238af1 100644 --- a/doc/en/dev_test_setup_linux.md +++ b/doc/en/dev_test_setup_linux.md @@ -21,6 +21,7 @@ The preferred method is via rvm: ``` curl -L https://get.rvm.io | bash -s stable ``` + ### For all system users ``` @@ -102,6 +103,7 @@ bundle install cp config/database.yml.example config/database.yml cp config/secrets.yml.example config/secrets.yml ``` + Perhaps it's needed to create a superuser rol with password in postgresql, and write it in */config/database.yml* 'user:' and 'password:' fields. Also, it seems that postgresql use as default an unix socket for localhost communications. If we encounter problems creating database (connection problems) we can change in */config/database.yml* the line: diff --git a/doc/es/dev_test_setup_linux.md b/doc/es/dev_test_setup_linux.md index dc9c92225..dc27585fc 100644 --- a/doc/es/dev_test_setup_linux.md +++ b/doc/es/dev_test_setup_linux.md @@ -21,6 +21,7 @@ El método recomendado es via rvm: ``` curl -L https://get.rvm.io | bash -s stable ``` + ### Para todos los usuarios del sistema: ```