Commit 3399b6a75bd4436104d66a11f655a10e3c0109ba

Authored by Paulo Meireles
1 parent d74fdaec

fixing INSTALL file: 'compile the translation' must be before 'create default environment'

Showing 1 changed file with 4 additions and 4 deletions   Show diff stats
@@ -237,6 +237,10 @@ Create the database structure: @@ -237,6 +237,10 @@ Create the database structure:
237 237
238 $ RAILS_ENV=production rake db:schema:load 238 $ RAILS_ENV=production rake db:schema:load
239 239
  240 +Compile the translations:
  241 +
  242 +$ RAILS_ENV=production rake noosfero:translations:compile
  243 +
240 Now we have to create some initial data. To create your default environment 244 Now we have to create some initial data. To create your default environment
241 (the first one), run the command below: 245 (the first one), run the command below:
242 246
@@ -258,10 +262,6 @@ $ RAILS_ENV=production ./script/runner "User.create(:login => 'adminuser', :emai @@ -258,10 +262,6 @@ $ RAILS_ENV=production ./script/runner "User.create(:login => 'adminuser', :emai
258 (replace "adminuser", "admin@example.com", "admin" with the login, email 262 (replace "adminuser", "admin@example.com", "admin" with the login, email
259 and password of your environment admin) 263 and password of your environment admin)
260 264
261 -Compile the translations:  
262 -  
263 -$ RAILS_ENV=production rake noosfero:translations:compile  
264 -  
265 To start the Noosfero application servers: 265 To start the Noosfero application servers:
266 266
267 $ ./script/production start 267 $ ./script/production start