From 6fefcca292e19a4ee2f2b127b2fab7a7d8e3c764 Mon Sep 17 00:00:00 2001 From: Maxwell Salzberg Date: Tue, 17 Apr 2012 10:29:32 -0700 Subject: [PATCH] update readme [ci skip] --- README.md | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 76e00e8a6..3e209dc42 100644 --- a/README.md +++ b/README.md @@ -22,21 +22,24 @@ Documentation is available on our [wiki](https://github.com/diaspora/diaspora/wi Here's how you can get a development environment up and running. You can check out system-specific guides [here](https://github.com/diaspora/diaspora/wiki/Installation-Guides). -### Step 1: Clone the repo +### Step 1: Clone the repo in your working directory ```git clone git@github.com:diaspora/diaspora.git ``` ### Step 2: Navigate to your cloned repository -```cd ../diaspora +```cd diaspora ``` ### Step 3: Install Bundler and gems (depending on [OS Vendor](https://github.com/diaspora/diaspora/wiki/Installation-Guides)) -```sudo gem install bundler && sudo bundle install +``` gem install bundler && bundle install ``` -### Step 4: Edit database.yml, and rename application.yml.example to just application.yml +### Step 4: Edit database.yml, and rename application.yml.example to just application.yml +``` cp application.yml.example application.yml + cp database.yml.example database.yml +``` -### Step 5: Create and migrate the database +### Step 5: Create and migrate the database (make sure your database of choice is started!) ```rake db:create && rake db:migrate ```