-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Testing pull request with squashing (#91)
* web based deploy uses master, debug message for deploy process ref #78 * nginx with ssl ref, nginx restart moved, bash_profile src'ed correctly ref #79 * contributing guide with better env and contribution info
- Loading branch information
1 parent
f5c8106
commit 838e4ba
Showing
7 changed files
with
80 additions
and
42 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 |
---|---|---|
|
@@ -2,10 +2,10 @@ GOOGLE_ANALYTICS_ID= | |
DATABASE_NAME= | ||
DATABASE_USERNAME= | ||
DATABASE_PASSWORD= | ||
DATABASE_HOST= | ||
DATABASE_HOST=localhost | ||
SECRET_KEY_BASE= | ||
HOST= | ||
MAIL_USER= | ||
MAIL_USER=[email protected] | ||
MAIL_PASSWORD= | ||
MAIL_DOMAIN= | ||
MAIL_ADDRESS= | ||
MAIL_DOMAIN=gmail.com | ||
MAIL_ADDRESS=smtp.gmail.com |
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,41 @@ | ||
# Contributing | ||
|
||
## Setup | ||
Fork, then clone the repo: | ||
|
||
``` | ||
git clone [email protected]:your-username/coyote.git | ||
``` | ||
|
||
Push to your fork, refer to our issues, and submit a [pull request](https://github.com/coyote-team/coyote/compare/develop...) to develop when you have changes rebased into a clean set of commits. | ||
|
||
## Before you pull | ||
|
||
No merge bubbles please. | ||
|
||
``` | ||
git pull --rebase | ||
# or default rebase instead of merge | ||
git config branch.autosetuprebase always # Force all new branches to automatically use rebase | ||
git config branch.*branch-name*.rebase true # Force existing branches to use rebase. | ||
``` | ||
|
||
## Before you push | ||
|
||
Clean up your local commits. | ||
|
||
``` | ||
git pull | ||
git rebase -i | ||
git push | ||
``` | ||
|
||
|
||
## Making changes | ||
The `master` branch is used for our auto-deploy process and should be deploy-ready. Minor changes should target or be made on the `develop` branch. Substantial, feature-related changes should be made on a corresponding feature branch based off of `develop` branch. Commits should be rebased for conciseness and clarity before pull requests are made and within the `develop` branch and feature branches. | ||
|
||
Changes are merged into `master` with a sauash: | ||
|
||
``` | ||
git merge --squash develop | ||
``` |
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
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