-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ci skip]Transition development env info from wiki
- Loading branch information
Showing
1 changed file
with
32 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,38 @@ Kajaeru is a web-based voting application to elect Ruby Kaja. ( "eru(選る)" is | |
|
||
About Ruby Kaja, see the [web page](http://kaja.rubyist.net/) for more information. | ||
|
||
## Development | ||
|
||
### Setup | ||
|
||
``` | ||
# clone this repository | ||
git clone [email protected]:yochiyochirb/kajaeru.git | ||
cd kajaeru | ||
# install gem | ||
bundle install --without production | ||
# migration | ||
cp config/database.yml.sample config/database.yml | ||
bin/rails db:create db:migrate db:seed | ||
# start | ||
bin/rails server | ||
``` | ||
|
||
Open your browser and access http://localhost:3000 . | ||
|
||
### Test | ||
|
||
```sh | ||
# unit test | ||
bin/rake test | ||
|
||
# cucumber | ||
bin/rails cucumber | ||
``` | ||
|
||
## How to join | ||
Only Yochiyochi.rb members can join and send PRs to this project. | ||
|
||
|