Skip to content

Latest commit

 

History

History
36 lines (29 loc) · 1.8 KB

README.md

File metadata and controls

36 lines (29 loc) · 1.8 KB

speakerfight

Join the chat at https://gitter.im/luanfonceca/speakerfight Beerpay

Speakerfight is an arena where speakers can fight against each other and people choose who wins.

Code Health Github Issues Build Status Coverage Status

============

Install

Normal installation

$ git clone git@github.com:luanfonceca/speakerfight.git
$ cd speakerfight
$ pip install -r requirements.txt
$ make setup # we have a fixture for the users...
# username: admin, password: admin;
# username: user, password: user
$ python manage.py runserver

Using Docker

Dependecies

$ git clone git@github.com:luanfonceca/speakerfight.git
$ cd speakerfight
$ docker-compose build
$ docker-compose run web make setup # we have a fixture for the users...
# username: admin, password: admin;
# username: user, password: user
$ docker-compose up