fix document indentation

This commit is contained in:
wvengen 2014-06-18 13:26:22 +02:00
parent 6466ea9653
commit 86c972a201
2 changed files with 22 additions and 22 deletions

View File

@ -6,9 +6,9 @@ Setup
1. Initialise your [Capistrano](http://capistranorb.com/) setup
bundle exec cap install
sed -i 's|^# \(require.*rails.*\)|\1|' Capfile
cp config/deploy.rb.SAMPLE config/deploy.rb
bundle exec cap install
sed -i 's|^# \(require.*rails.*\)|\1|' Capfile
cp config/deploy.rb.SAMPLE config/deploy.rb
When you're using [RVM](http://rvm.io/) on the server you may want to
uncomment the corresponding line in `Capfile`.

View File

@ -19,7 +19,7 @@ Getting started
0. Clone the repository from GitHub:
git clone https://github.com/foodcoops/foodsoft.git
git clone https://github.com/foodcoops/foodsoft.git
This brings up the bleeding-edge development version, which might contain some
unfinished parts. If you want to be safe, choose the last release:
@ -27,9 +27,9 @@ Getting started
1. Install RVM and Ruby 1.9.3+ (if you have not done so before):
\curl -L https://get.rvm.io | bash
source ~/.rvm/scripts/rvm
rvm install 2.0
\curl -L https://get.rvm.io | bash
source ~/.rvm/scripts/rvm
rvm install 2.0
We try to keep foodsoft compatible with Ruby 1.9.3 as well as any later versions,
so if you use this and don't want to use RVM, that might actually work.
@ -44,8 +44,8 @@ Getting started
[libffi-dev](https://packages.debian.org/stable/libffi-dev)
[libreadline-dev](https://packages.debian.org/stable/libreadline-dev):
# Debian/Ubuntu
sudo apt-get install libv8-dev libmysqlclient-dev libxml2-dev libxslt1-dev libffi-dev libreadline-dev
# Debian/Ubuntu
sudo apt-get install libv8-dev libmysqlclient-dev libxml2-dev libxslt1-dev libffi-dev libreadline-dev
For CentOS/Redhat you need
[v8](https://apps.fedoraproject.org/packages/v8)
@ -55,27 +55,27 @@ Getting started
[libffi-devel](https://apps.fedoraproject.org/packages/libffi-devel)
[readline-devel](https://apps.fedoraproject.org/packages/readline-devel):
# CentOS/Redhat
sudo yum install v8 community-mysql-devel libxml2-devel libxslt-devel libffi-devel readline-devel
# CentOS/Redhat
sudo yum install v8 community-mysql-devel libxml2-devel libxslt-devel libffi-devel readline-devel
3. Install Ruby dependencies:
bundle install
bundle install
4. Setup your development environment:
rake foodsoft:setup_development
rake foodsoft:setup_development
This will interactively prompt with several questions relating to your
required environment.
5. Start rails by running:
bundle exec rails s
bundle exec rails s
6. Open your favorite browser and open the web application at:
http://localhost:3000/
http://localhost:3000/
You might want to watch a
[kitten video](https://www.youtube.com/watch?v=9Iq5yCoHp4o)
@ -101,7 +101,7 @@ explained here.
Create the database configuration from the default:
cp config/database.yml.SQLite_SAMPLE config/database.yml
cp config/database.yml.SQLite_SAMPLE config/database.yml
If you are fine with using a file-based sqlite database you are all set.
The sqlite files (`development/test/production`) will reside in the `db`
@ -113,7 +113,7 @@ explained here.
Again, you need to create your own copy of the default configuration:
cp config/environments/development.rb.SAMPLE config/environments/development.rb
cp config/environments/development.rb.SAMPLE config/environments/development.rb
Edit development.rb to specify your settings (at least the ActionMailer SMTP
settings). If you just leave the file as is, emails will not work but
@ -124,7 +124,7 @@ explained here.
You need to create your own copy of the foodsoft configuration settings:
cp config/app_config.yml.SAMPLE config/app_config.yml
cp config/app_config.yml.SAMPLE config/app_config.yml
Edit `app_config.yml` to suit your needs or just keep the defaults for now.
@ -135,14 +135,14 @@ explained here.
its sensitive information, rails will encrypt it with a token. So copy the
config file
cp config/initializers/secret_token.rb.SAMPLE config/initializers/secret_token.rb
cp config/initializers/secret_token.rb.SAMPLE config/initializers/secret_token.rb
and modify the token!! You can run `bundle exec rake secret`
5. **Create database (schema) and load defaults**
rake db:setup
rake db:setup
With this, you also get a ready to go user with username 'admin' and
password 'secret'.
@ -167,9 +167,9 @@ explained here.
browser interface. Just install mailcatcher with gem install mailcatcher
and start the service with
mailcatcher
mailcatcher
From now on you have a smtp server listening on 1025. To see the emails go to
http://localhost:1080
http://localhost:1080