Commit bbb067b570ad5f46bd9a30dc46279ab250826951

Authored by Antonio Terceiro
1 parent b6fa706b

Small enhancements in quick start script

Showing 1 changed file with 3 additions and 3 deletions   Show diff stats
script/quick-start-debian
@@ -22,7 +22,7 @@ run sudo apt-get -y install $runtime_dependencies @@ -22,7 +22,7 @@ run sudo apt-get -y install $runtime_dependencies
22 22
23 # needed for development 23 # needed for development
24 run sudo apt-get -y install libtidy-ruby libhpricot-ruby libmocha-ruby imagemagick po4a xvfb libxml2-dev libxslt-dev 24 run sudo apt-get -y install libtidy-ruby libhpricot-ruby libmocha-ruby imagemagick po4a xvfb libxml2-dev libxslt-dev
25 -run gem install bundler 25 +gem which bundler >/dev/null 2>&1 || run gem install bundler
26 run bundle install 26 run bundle install
27 27
28 # create the database with sample data 28 # create the database with sample data
@@ -37,7 +37,7 @@ run rake noosfero:translations:compile @@ -37,7 +37,7 @@ run rake noosfero:translations:compile
37 # create needed directory 37 # create needed directory
38 mkdir -p tmp/pids 38 mkdir -p tmp/pids
39 39
40 -# start server 40 +# you can now start the server
41 say "I: Congratulations, you are ready to run Noosfero." 41 say "I: Congratulations, you are ready to run Noosfero."
42 -say "I: To execute Noosfero server, run \`/script/server-say "I: To execute Noosfero server, run \`/script/server and browse to http://localhost:3000" 42 +say "I: To execute Noosfero in development mode, run \`/script/development+say "I: To execute Noosfero in development mode, run \`/script/development and browse to http://localhost:3000"
43 say "I: To execute Noosfero tests, run \`rake\`." 43 say "I: To execute Noosfero tests, run \`rake\`."