Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/diaspora/diaspora.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxwell Salzberg <maxwell@joindiaspora.com>2012-04-17 21:29:32 +0400
committerMaxwell Salzberg <maxwell@joindiaspora.com>2012-04-17 21:29:32 +0400
commit6fefcca292e19a4ee2f2b127b2fab7a7d8e3c764 (patch)
treee3fc1142f46e658d773cee3776bbc0a0d89cb783 /README.md
parent672eb1674fb06f087027333e36cd2167c8a38a37 (diff)
update readme [ci skip]
Diffstat (limited to 'README.md')
-rw-r--r--README.md13
1 files 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
```