Skip to content

Commit 333278e

Browse files
authored
File update (#16)
* Add basic files * Forgot to save readme * Add logo to readme
1 parent 1050a44 commit 333278e

File tree

8 files changed

+137
-3
lines changed

8 files changed

+137
-3
lines changed

.github/ISSUE_TEMPLATE/bug_report.md

+26
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
name: "\U0001F41B Bug report"
3+
about: Create a report to help us improve the SDK
4+
title: ''
5+
labels: bug
6+
assignees: ''
7+
8+
---
9+
10+
**Describe the bug**
11+
A clear and concise description of the bug.
12+
13+
**To Reproduce**
14+
The steps to reproduce the behavior
15+
16+
**Expected Behavior**
17+
A clear description of what you expected to happen.
18+
19+
**Actual Behavior**
20+
A clear description of what actually happened
21+
22+
**Screenshots**
23+
If applicable, add screenshots to help explain your problem.
24+
25+
**Additional context**
26+
Add any other context about the problem here.

.github/ISSUE_TEMPLATE/config.yml

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
blank_issues_enabled: false
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: "\U0001F680 Feature Request"
3+
about: Suggest an idea for this SDK
4+
title: ''
5+
labels: enhancement
6+
assignees: ''
7+
8+
---
9+
10+
**Why is this feature valuable to you? Does it solve a problem you're having?**
11+
A clear and concise description of why this feature is valuable. Ex. I'm always frustrated when [...]
12+
13+
**Describe the solution you'd like**
14+
A clear and concise description of what you want to happen.
15+
16+
**Describe alternatives you've considered**
17+
A clear and concise description of any alternative solutions or features you've considered. (if applicable)
18+
19+
**Additional context**
20+
Add any other context or screenshots about the feature request here.
+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
---
2+
name: "\U0001F4AC Questions / Help"
3+
about: Get help with issues you are experiencing
4+
title: ''
5+
labels: help-wanted, question
6+
assignees: ''
7+
8+
---
9+
10+
**Before you start**
11+
Have you checked StackOverflow, previous issues, and Dropbox Developer Forums for help?
12+
13+
**What is your question?**
14+
A clear and concise description the question.
15+
16+
**Screenshots**
17+
If applicable, add screenshots to help explain your question.
18+
19+
**Additional context**
20+
Add any other context about the question here.

CODE_OF_CONDUCT.md

+5
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# Dropbox Code Of Conduct
2+
3+
*Dropbox believes that an inclusive development environment fosters greater technical achievement. To encourage a diverse group of contributors we've adopted this code of conduct.*
4+
5+
Please read the Official Dropbox [Code of Conduct](https://opensource.dropbox.com/coc/) before contributing.

CONTRIBUTING.md

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
# Contributing to the Dropbox API Spec
2+
We value and rely on the feedback from our community. This comes in the form of bug reports, feature requests, and general guidance. We welcome your issues and try our hardest to be timely in both response and resolution. Please read through this document before submitting issues to ensure we have the necessary information to help you resolve your issue.
3+
4+
Unfortunately, because this repo is entirely autogenerated, we are not accepting pull requests. We hope that if you find an issue, we will be able to resolve it quickly.
5+
6+
## Filing Bug Reports
7+
You can file a bug report on the [GitHub Issues][issues] page.
8+
9+
1. Search through existing issues to ensure that your issue has not been reported. If it is a common issue, there is likely already an issue.
10+
11+
2. Please ensure you are using the latest version of the spec. While this may be a valid issue, we only will fix bugs affecting the latest version and your bug may have been fixed in a newer version.
12+
13+
3. Provide as much information as you can regarding the language, version, SDK version, and any other relevant information about your environment so we can help resolve the issue as quickly as possible.
14+
15+
[issues]: https://github.com/dropbox/dropbox-api-spec/issues

LICENSE

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
Copyright (c) 2020 Dropbox Inc., http://www.dropbox.com/
2+
3+
Permission is hereby granted, free of charge, to any person obtaining
4+
a copy of this software and associated documentation files (the
5+
"Software"), to deal in the Software without restriction, including
6+
without limitation the rights to use, copy, modify, merge, publish,
7+
distribute, sublicense, and/or sell copies of the Software, and to
8+
permit persons to whom the Software is furnished to do so, subject to
9+
the following conditions:
10+
11+
The above copyright notice and this permission notice shall be
12+
included in all copies or substantial portions of the Software.
13+
14+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
15+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
16+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
17+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
18+
LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
19+
OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
20+
WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

README.md

+30-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,32 @@
1-
Dropbox API Spec
2-
================
1+
[![Logo][logo]][repo]
32

4-
The Stone API specification that describes the Dropbox v2 API.
3+
The offical Dropbox API Spec.
54

5+
## SDKs
6+
7+
We have a variety of SDKs available for you to use that are based off this spec.
8+
9+
- [Dropbox Python SDK](https://github.com/dropbox/dropbox-sdk-python)
10+
- [Dropbox Javascript SDK](https://github.com/dropbox/dropbox-sdk-js)
11+
- [Dropbox DotNet SDK](https://github.com/dropbox/dropbox-sdk-dotnet)
12+
- [Dropbox Java SDK](https://github.com/dropbox/dropbox-sdk-java)
13+
- [Dropbox Swift SDK](https://github.com/dropbox/swiftydropbox)
14+
- [Dropbox Objective-C SDK](https://github.com/dropbox/dropbox-sdk-obj-c)
15+
16+
- [Dropbox API V2 Explorer](https://github.com/dropbox/dropbox-api-v2-explorer)
17+
18+
## Getting Help
19+
20+
If you find a bug, please see [CONTRIBUTING.md][contributing] for information on how to report it.
21+
22+
If you need help that is not specific to the API Spec, please reach out to [Dropbox Support][support].
23+
24+
## License
25+
26+
The API Spec is distributed under the MIT license, please see [LICENSE][license] for more information.
27+
28+
[logo]: https://cfl.dropboxstatic.com/static/images/sdk/api_spec_banner.png
29+
[repo]: https://github.com/dropbox/dropbox-api-spec
30+
[license]: https://github.com/dropbox/dropbox-api-spec/blobs/master/LICENSE
31+
[contributing]: https://github.com/dropbox/dropbox-api-spec/blobs/master/CONTRIBUTING.md
32+
[support]: https://www.dropbox.com/developers/contact

0 commit comments

Comments
 (0)