This repository has been archived by the owner on May 25, 2019. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'release-1.2' into master
- Loading branch information
Showing
155 changed files
with
2,560 additions
and
796 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
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
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 |
---|---|---|
@@ -0,0 +1,35 @@ | ||
# Contributing to riverrats.com.au | ||
|
||
Thanks for taking the time to contribute to the River Rats official website! Help is always appreciated. | ||
|
||
|
||
|
||
## Branches | ||
|
||
We follow the branching model outlined in the article [A successful Git branching model](https://nvie.com/posts/a-successful-git-branching-model/). If you can't be bothered to read all that, here's the important bits. | ||
|
||
There are two main branches: | ||
|
||
1. `master`: The current production version of the website. | ||
2. `develop`: Where future releases are under construction. Unless you're writing a bug fix you'll likely want to start here. | ||
|
||
Then there are three types of supporting branches: | ||
|
||
* `feature-*`: A branch which introduces a new feature. e.g. `feature-player-nicknames`. | ||
* `release-*`: A branch devoted to polishing up the project for a new release. e.g. `release-1.2.1`. Note that only project maintainers will create this kind of branch. | ||
* `hotfix-*`: For fixing bugs in production. | ||
|
||
|
||
|
||
## Redis | ||
|
||
To run the development server you'll need to have an instance of Redis up and running. Jobs are managed by `sidekiq`, so you'll also need to start `sidekiq`. Once Redis is running you can achieve this with the command (from the root project directory): | ||
|
||
``` | ||
$ bundle exec sidekiq -C config/sidekiq.yml | ||
``` | ||
|
||
|
||
## Elasticsearch | ||
|
||
If you want to use searching functionality you'll also need to install elasticsearch on your machine. |
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
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
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 |
---|---|---|
@@ -1,7 +1,22 @@ | ||
# riverrats.com.au | ||
# River Rats Poker League | ||
|
||
[![Dependabot Status](https://api.dependabot.com/badges/status?host=github&repo=sean0x42/riverrats.com.au&identifier=126777895)](https://dependabot.com) | ||
[![Coverage Status](https://coveralls.io/repos/github/sean0x42/riverrats.com.au/badge.svg?branch=master)](https://coveralls.io/github/sean0x42/riverrats.com.au?branch=master) | ||
[![Build Status](https://travis-ci.com/sean0x42/riverrats.com.au.svg?token=y4PzktMpXpMzBmaZHNGq&branch=develop)](https://travis-ci.com/sean0x42/riverrats.com.au) | ||
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/a5bd9fd7908c4e838dd9824ed347b559)](https://www.codacy.com/app/sean_19/riverrats.com.au?utm_source=github.com&utm_medium=referral&utm_content=sean0x42/riverrats.com.au&utm_campaign=Badge_Grade) | ||
[![GitLicense](https://gitlicense.com/badge/sean0x42/riverrats.com.au)](https://gitlicense.com/license/sean0x42/riverrats.com.au) | ||
|
||
This is a commissioned Rails webapp for the River Rats Poker League, operating throughout the Mid-North Coast (Australia). | ||
This is a commissioned Rails webapp for the River Rats Poker League, operating | ||
throughout the Mid-North Coast (Australia). | ||
|
||
## Contributing | ||
|
||
Contributions are welcome, and encouraged! | ||
|
||
* If you have a feature request, or bug report, please [create an issue](https://github.com/sean0x42/riverrats.com.au/issues/new). | ||
* If you would like to make a suggestion, you may fork the repository, or use inline suggestions on GitHub. | ||
* For more complex contributions, please check out our [contribution guide](https://github.com/sean0x42/riverrats.com.au/blob/master/CONTRIBUTING.md). This will explain our approach to branching, as well as some helpful advice to get your development environment up and running. | ||
|
||
## Author | ||
|
||
This website is designed, developed, and maintained by | ||
[Sean Bailey](https://www.seanbailey.io). |
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
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 |
---|---|---|
|
@@ -13,4 +13,4 @@ | |
//= require rails-ujs | ||
//= require turbolinks | ||
//= require local-time | ||
//= require js-routes | ||
//= require js-routes |
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 |
---|---|---|
|
@@ -22,7 +22,7 @@ | |
} | ||
|
||
.title { | ||
font-weight: bold; | ||
font-weight: 500; | ||
} | ||
} | ||
} |
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
Oops, something went wrong.