Added kind of checkout tutorial
This commit is contained in:
parent
20780eb223
commit
7a46b9ee4e
|
@ -1,3 +1,4 @@
|
|||
tmp/
|
||||
log/
|
||||
*.sqlite3
|
||||
.sass-cache/
|
|
@ -0,0 +1,28 @@
|
|||
# BeatHaven
|
||||
Ultimate web jukebox.
|
||||
|
||||
## Checking out
|
||||
```bash
|
||||
$ git clone git@github.com:magnolia-fan/BeatHaven.git beathaven
|
||||
$ cd beathaven/
|
||||
$ bundle install
|
||||
$ rake db:migrate
|
||||
```
|
||||
Note: you need PostgreSQL installed and added its binaries to $PATH
|
||||
|
||||
## Configuring
|
||||
add this line to `/etc/hosts`:
|
||||
```
|
||||
127.0.0.1 dev.beathaven.org
|
||||
```
|
||||
|
||||
## Starting server
|
||||
1st tab:
|
||||
```bash
|
||||
$ unicorn_rails
|
||||
```
|
||||
|
||||
2nd tab:
|
||||
```bash
|
||||
$ rake jobs:work
|
||||
```
|
|
@ -1,3 +1,4 @@
|
|||
# encoding: UTF-8
|
||||
# This file is auto-generated from the current state of the database. Instead
|
||||
# of editing this file, please use the migrations feature of Active Record to
|
||||
# incrementally modify your database, and then regenerate this schema definition.
|
||||
|
|
Loading…
Reference in New Issue