Commit eeb8d215 by tady

write readme

parent be4a8e63
#!/bin/sh #!/bin/sh
# SET YOUR ENV HERE.
export GOOGLE_KEY="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com" export GOOGLE_KEY="xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx.apps.googleusercontent.com"
export GOOGLE_SECRET="xxxxxxxxxxxxxxxxxxxxxxxx" export GOOGLE_SECRET="xxxxxxxxxxxxxxxxxxxxxxxx"
export DB_TEST_USER="user"
export DB_TEST_PASS="pass"
export DB_DEVELOPMENT_USER="user"
export DB_DEVELOPMENT_PASS="pass"
...@@ -15,7 +15,7 @@ ...@@ -15,7 +15,7 @@
/log/*.log /log/*.log
/tmp /tmp
/bin/set-env.sh .env
/coverage/.* /coverage/.*
......
rendezvous rendezvous
========== ==========
A simple markdown-based wiki system for term.
## Badge ## Badge
[![Build Status](https://travis-ci.org/tadyjp/rendezvous.png)](https://travis-ci.org/tadyjp/rendezvous) [![Build Status](https://travis-ci.org/tadyjp/rendezvous.png)](https://travis-ci.org/tadyjp/rendezvous)
[![Coverage Status](https://coveralls.io/repos/tadyjp/rendezvous/badge.png)](https://coveralls.io/r/tadyjp/rendezvous) [![Coverage Status](https://coveralls.io/repos/tadyjp/rendezvous/badge.png)](https://coveralls.io/r/tadyjp/rendezvous)
[![Code Climate](https://codeclimate.com/github/tadyjp/rendezvous.png)](https://codeclimate.com/github/tadyjp/rendezvous) [![Code Climate](https://codeclimate.com/github/tadyjp/rendezvous.png)](https://codeclimate.com/github/tadyjp/rendezvous)
[![Dependency Status](https://gemnasium.com/tadyjp/rendezvous.png)](https://gemnasium.com/tadyjp/rendezvous) [![Dependency Status](https://gemnasium.com/tadyjp/rendezvous.png)](https://gemnasium.com/tadyjp/rendezvous)
## ENVの設定 # How to install and use.
Get code and install gems.
```
$ git clone git@github.com:tadyjp/rendezvous.git
$ cd rendezvous
$ bundle install
```
Create YOUR .ENV file.
``` ```
. ./bin/set-env.sh $ cp .env.example .env
$ vim .env
``` ```
Setup DB (Default: mysql).
```
$ bundle exec rake db:migrate
$ bundle exec rake db:seed
```
Set ENV before start server.
```
$ . .env
$ bundle exec rails s
```
And have fun with your team !
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment