-
Notifications
You must be signed in to change notification settings - Fork 22
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
66 additions
and
5 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 |
---|---|---|
@@ -0,0 +1 @@ | ||
/codox |
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,30 @@ | ||
# Contributing Guidelines | ||
|
||
**Do** follow [the seven rules of a great Git commit message][1]. | ||
|
||
**Do** follow [the Clojure Style Guide][2]. | ||
|
||
**Do** include tests for your change when appropriate. | ||
|
||
**Do** ensure that the CI checks pass. | ||
|
||
**Do** squash the commits in your PR to remove corrections | ||
irrelevant to the code history, once the PR has been reviewed. | ||
|
||
**Do** feel free to pester the project maintainers about the PR if it | ||
hasn't been responded to. Sometimes notifications can be missed. | ||
|
||
**Don't** overuse vertical whitespace; avoid multiple sequential blank | ||
lines. | ||
|
||
**Don't** include more than one feature or fix in a single PR. | ||
|
||
**Don't** include changes unrelated to the purpose of the PR. This | ||
includes changing the project version number, adding lines to the | ||
`.gitignore` file, or changing the indentation or formatting. | ||
|
||
**Don't** open a new PR if changes are requested. Just push to the | ||
same branch and the PR will be updated. | ||
|
||
[1]: https://chris.beams.io/posts/git-commit/#seven-rules | ||
[2]: https://github.com/bbatsov/clojure-style-guide |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
#!/usr/bin/env bash | ||
|
||
echo "cleanup..." | ||
rm -rf codox && mkdir codox | ||
git clone [email protected]:AppsFlyer/aerospike-clj.git codox | ||
cd codox | ||
git symbolic-ref HEAD refs/heads/gh-pages | ||
rm .git/index | ||
git clean -fdx | ||
cd .. | ||
echo "regenerate docs..." | ||
|
||
lein codox | ||
|
||
echo "commit changes" | ||
cd codox | ||
git add . | ||
git commit -am "Update project documentation" | ||
echo "push updated docs..." | ||
git push -v -f -u origin gh-pages | ||
cd .. | ||
echo "done! see updated docs at: https://appsflyer.github.io/aerospike-clj/index.html" |