Working auth and photo json endpoint
Signed-off-by: Kris Nóva <kris@nivenly.com>
This commit is contained in:
parent
ef275f97f4
commit
e4323b6047
2032 changed files with 821464 additions and 52 deletions
58
vendor/github.com/leandro-lugaresi/hub/CONTRIBUTING.md
generated
vendored
Normal file
58
vendor/github.com/leandro-lugaresi/hub/CONTRIBUTING.md
generated
vendored
Normal file
|
@ -0,0 +1,58 @@
|
|||
# Contributing
|
||||
|
||||
By participating to this project, you agree to abide our [code of
|
||||
conduct](/CODE_OF_CONDUCT.md).
|
||||
|
||||
## Setup your machine
|
||||
|
||||
`hub` is written in [Go](https://golang.org/).
|
||||
|
||||
Prerequisites are:
|
||||
|
||||
- Build:
|
||||
- `make`
|
||||
- [Go 1.9+](http://golang.org/doc/install)
|
||||
|
||||
Clone `hub` from source into some path:
|
||||
|
||||
```sh
|
||||
git clone git@github.com:leandro-lugaresi/hub.git
|
||||
cd hub
|
||||
```
|
||||
|
||||
If you created a fork clone your fork and add my repository as a upstream remote:
|
||||
|
||||
```sh
|
||||
git clone git@github.com:{your-name}/hub.git
|
||||
cd hub
|
||||
git remote add upstream git@github.com:leandro-lugaresi/hub.git
|
||||
```
|
||||
|
||||
### Install
|
||||
|
||||
Install the build and lint dependencies:
|
||||
|
||||
```sh
|
||||
$ make setup
|
||||
```
|
||||
|
||||
A good way of making sure everything is all right is running the test suite:
|
||||
|
||||
```sh
|
||||
$ make test
|
||||
```
|
||||
|
||||
## Test your change
|
||||
|
||||
When you are satisfied with the changes, we suggest you run:
|
||||
|
||||
```sh
|
||||
$ make ci
|
||||
```
|
||||
|
||||
Which runs all the linters and tests.
|
||||
|
||||
## Submit a pull request
|
||||
|
||||
Push your branch to your `example` fork and open a pull request against the
|
||||
main branch.
|
Loading…
Add table
Add a link
Reference in a new issue