Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: donnemartin/awesome-aws
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0.1.0
Choose a base ref
...
head repository: donnemartin/awesome-aws
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Loading
Showing with 453 additions and 325 deletions.
  1. +11 −0 .github/PULL_REQUEST_TEMPLATE.md
  2. +1 −2 .travis.yml
  3. +4 −2 CONTRIBUTING.md
  4. +6 −0 LICENSE.md
  5. +407 −314 README.md
  6. +1 −1 awesome/awesome.py
  7. +4 −1 awesome/awesome_cli.py
  8. +2 −2 awesome/lib/github.py
  9. +7 −0 codecov.yml
  10. +2 −0 setup.cfg
  11. +2 −1 setup.py
  12. +1 −1 tests/mock_github.py
  13. +4 −0 tests/test_awesome_cli.py
  14. +1 −1 tox.ini
11 changes: 11 additions & 0 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
## Review the Contributing Guidelines

Before submitting a pull request, verify it meets all requirements in the [Contributing Guidelines](https://github.com/donnemartin/awesome-aws/blob/master/CONTRIBUTING.md).

## Describe Why This Is Awesome

Why is this awesome?

--

Like this pull request? Vote for it by adding a :+1:
3 changes: 1 addition & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
language: python
env:
- TOXENV=py33
- TOXENV=py34
- TOXENV=py36
os:
- linux
install:
6 changes: 4 additions & 2 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -6,7 +6,7 @@ Please ensure your pull request adheres to the following guidelines.

## A Note on Repo AWSomeness

For the initial launch of `awesome-aws`, each repo listed meets at least one of the following criteria:
Each repo listed meets at least one of the following requirements:

* Community-authored repo with 100+ stars
* Community-vouched repo with < 100 stars
@@ -16,7 +16,7 @@ For the initial launch of `awesome-aws`, each repo listed meets at least one of

Pull requests might be left open for a period of time to let the community chime in and vouch for it. An official repo from [aws](https://github.com/aws) or [awslabs](https://github.com/awslabs) can be removed if the community wishes. Check out the [awesome manifesto](https://github.com/sindresorhus/awesome/blob/master/awesome.md).

## New Links
## Pull Requests

* Search previous suggestions before making a new one, as yours may be a duplicate.
* Add one link per pull request.
@@ -31,6 +31,8 @@ Pull requests might be left open for a period of time to let the community chime
* Check your spelling and grammar.
* Remove any trailing whitespace.
* Send a pull request with the reason why the addition is awesome.
* Use the following format for your pull request title:
* Add user/repo - Short repo description

## Updates to Existing Links or Sections

6 changes: 6 additions & 0 deletions LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
I am providing code and resources in this repository to you under an open source
license. Because this is my personal repository, the license you receive to my
code and resources is from me and not my employer (Facebook).

Copyright 2017 Donne Martin

Creative Commons Attribution 4.0 International License (CC BY 4.0)

http://creativecommons.org/licenses/by/4.0/
Loading