From 1b754a4693b0e56e75f7be05f44f301615b4e5cf Mon Sep 17 00:00:00 2001 From: Rob Brackett Date: Thu, 7 Jun 2018 09:48:16 -0700 Subject: [PATCH] Add README to docs folder, fixes #5049 Also adds a link to the authors list in the top-level README. License: MIT Signed-off-by: Rob Brackett --- README.md | 2 +- docs/README.md | 38 ++++++++++++++++++++++++++++++++++++++ 2 files changed, 39 insertions(+), 1 deletion(-) create mode 100644 docs/README.md diff --git a/README.md b/README.md index 3e7689c7d681..67681dcf367e 100644 --- a/README.md +++ b/README.md @@ -322,7 +322,7 @@ file an issue of your own! ## Contributing -Please see [Contribute.md](contribute.md)! +We ❤️ all [our contributors](AUTHORS); this project wouldn’t be what it is without you! If you want to help out, please see [Contribute.md](contribute.md)! This repository falls under the IPFS [Code of Conduct](https://github.com/ipfs/community/blob/master/code-of-conduct.md). diff --git a/docs/README.md b/docs/README.md new file mode 100644 index 000000000000..4a75a23011d2 --- /dev/null +++ b/docs/README.md @@ -0,0 +1,38 @@ +# Documentation and Guides + +If you’re experiencing an issue with IPFS, **please follow [our issue guide](github-issue-guide.md) when filing an issue!** + +Otherwise, check out the following guides to using and developing IPFS: + + +## General Usage + +- [Transferring a File Over IPFS](file-transfer.md) +- [Configuration reference](config.md) + - [Datastore configuration](datastores.md) + - [Experimental features](experimental-features.md) +- [Installing command completion](command-completion.md) +- [Mounting IPFS with FUSE](fuse.md) +- [Installing plugins](plugins.md) + + +## API Support + +- [How to Implement an API Client](implement-api-bindings.md) +- [Connecting with Websockets](transports.md) — if you want `js-ipfs` nodes in web browsers to connect to your `go-ipfs` node, you will need to turn on websocket support in your `go-ipfs` node. + + +## Developing `go-ipfs` + +- Building on… + - [Windows](windows.md) + - [OpenBSD](openbsd.md) +- [Performance Debugging Guidelines](debug-guide.md) +- [Release Checklist](releases.md) + + +## Other + +- [Thanks to all our contributors ❤️](AUTHORS) (We use the `generate-authors.sh` script to regenerate this list.) +- Our [Developer Certificate of Origin (DCO)](developer-certificate-of-origin) — when you sign your commits with `Signed-off-by: `, you are agreeing to this document. +- [How to file a GitHub Issue](github-issue-guide.md)