edit InfluxDB license info so that GitHub recognizes it
GitHub uses a library called Licensee to identify a project's license type. It shows this information in the status bar and via the API if it can unambiguously identify the license. This commit renames LICENSE_OF_DEPENDENCIES.md to DEPENDENCIES.md, which allows Licensee to ignore the file when checking the repository's license type. It also adds a "Licensing" section to the README so that users will understand the intent of the DEPENDENCIES.md file. Collectively, these changes allow Licensee to successfully identify the license type of InfluxDB's codebase as MIT. I also updated the license info for Opentracing-Go, which is now Apache-licensed and no longer MIT-licensed. Signed-off-by: Andrea Kao <eirinikos@gmail.com>pull/9703/head
parent
a70cd46102
commit
067147a0cc
|
@ -25,7 +25,7 @@
|
|||
- github.com/jwilder/encoding [MIT LICENSE](https://github.com/jwilder/encoding/blob/master/LICENSE)
|
||||
- github.com/mattn/go-isatty [MIT LICENSE](https://github.com/mattn/go-isatty/blob/master/LICENSE)
|
||||
- github.com/matttproud/golang_protobuf_extensions [APACHE LICENSE](https://github.com/matttproud/golang_protobuf_extensions/blob/master/LICENSE)
|
||||
- github.com/opentracing/opentracing-go [MIT LICENSE](https://github.com/opentracing/opentracing-go/blob/master/LICENSE)
|
||||
- github.com/opentracing/opentracing-go [APACHE LICENSE](https://github.com/opentracing/opentracing-go/blob/master/LICENSE)
|
||||
- github.com/paulbellamy/ratecounter [MIT LICENSE](https://github.com/paulbellamy/ratecounter/blob/master/LICENSE)
|
||||
- github.com/peterh/liner [MIT LICENSE](https://github.com/peterh/liner/blob/master/COPYING)
|
||||
- github.com/philhofer/fwd [MIT LICENSE](https://github.com/philhofer/fwd/blob/master/LICENSE.md)
|
|
@ -66,6 +66,10 @@ curl -G "http://localhost:8086/query?pretty=true" --data-urlencode "db=mydb" \
|
|||
|
||||
If you're feeling adventurous and want to contribute to InfluxDB, see our [contributing doc](https://github.com/influxdata/influxdb/blob/master/CONTRIBUTING.md) for info on how to make feature requests, build from source, and run tests.
|
||||
|
||||
## Licensing
|
||||
|
||||
See [LICENSE](./LICENSE) and [DEPENDENCIES](./DEPENDENCIES).
|
||||
|
||||
## Looking for Support?
|
||||
|
||||
InfluxDB offers a number of services to help your project succeed. We offer Developer Support for organizations in active development, Managed Hosting to make it easy to move into production, and Enterprise Support for companies requiring the best response times, SLAs, and technical fixes. Visit our [support page](https://influxdata.com/services/) or contact [sales@influxdb.com](mailto:sales@influxdb.com) to learn how we can best help you succeed.
|
||||
|
|
Loading…
Reference in New Issue