aboutsummaryrefslogtreecommitdiffstats
path: root/swarm
diff options
context:
space:
mode:
authorAnton Evangelatov <anton.evangelatov@gmail.com>2018-07-19 18:13:03 +0800
committerAnton Evangelatov <anton.evangelatov@gmail.com>2018-07-19 18:13:03 +0800
commit763e64cad8e2d6468daaee8ee57f156c500fab80 (patch)
treef37781c0bac7b8fa349001ee4cfd705cf7ccd87c /swarm
parentdcdd57df6282a6cd43a6407e8626a5cdcca60482 (diff)
downloadgo-tangerine-763e64cad8e2d6468daaee8ee57f156c500fab80.tar
go-tangerine-763e64cad8e2d6468daaee8ee57f156c500fab80.tar.gz
go-tangerine-763e64cad8e2d6468daaee8ee57f156c500fab80.tar.bz2
go-tangerine-763e64cad8e2d6468daaee8ee57f156c500fab80.tar.lz
go-tangerine-763e64cad8e2d6468daaee8ee57f156c500fab80.tar.xz
go-tangerine-763e64cad8e2d6468daaee8ee57f156c500fab80.tar.zst
go-tangerine-763e64cad8e2d6468daaee8ee57f156c500fab80.zip
swarm: readme.md
Diffstat (limited to 'swarm')
-rw-r--r--swarm/README.md54
1 files changed, 54 insertions, 0 deletions
diff --git a/swarm/README.md b/swarm/README.md
new file mode 100644
index 000000000..ac5cffd54
--- /dev/null
+++ b/swarm/README.md
@@ -0,0 +1,54 @@
+## Swarm
+
+[https://swarm.ethereum.org](https://swarm.ethereum.org)
+
+Swarm is a distributed storage platform and content distribution service, a native base layer service of the ethereum web3 stack. The primary objective of Swarm is to provide a decentralized and redundant store for dapp code and data as well as block chain and state data. Swarm is also set out to provide various base layer services for web3, including node-to-node messaging, media streaming, decentralised database services and scalable state-channel infrastructure for decentralised service economies.
+
+[![Travis](https://travis-ci.org/ethereum/go-ethereum.svg?branch=master)](https://travis-ci.org/ethereum/go-ethereum)
+[![Gitter](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/ethereum/swarm?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
+
+
+## Building the source
+
+Building Swarm requires Go (version 1.10 or later).
+
+ go get -d github.com/ethereum/go-ethereum
+
+ go install github.com/ethereum/go-ethereum/cmd/swarm
+
+
+## Documentation
+
+Swarm documentation can be found at [https://swarm-guide.readthedocs.io](https://swarm-guide.readthedocs.io).
+
+
+## Contribution
+
+Thank you for considering to help out with the source code! We welcome contributions from
+anyone on the internet, and are grateful for even the smallest of fixes!
+
+If you'd like to contribute to Swarm, please fork, fix, commit and send a pull request
+for the maintainers to review and merge into the main code base. If you wish to submit more
+complex changes though, please check up with the core devs first on [our Swarm gitter channel](https://gitter.im/ethereum/swarm)
+to ensure those changes are in line with the general philosophy of the project and/or get some
+early feedback which can make both your efforts much lighter as well as our review and merge
+procedures quick and simple.
+
+Please make sure your contributions adhere to our coding guidelines:
+
+ * Code must adhere to the official Go [formatting](https://golang.org/doc/effective_go.html#formatting) guidelines (i.e. uses [gofmt](https://golang.org/cmd/gofmt/)).
+ * Code must be documented adhering to the official Go [commentary](https://golang.org/doc/effective_go.html#commentary) guidelines.
+ * Pull requests need to be based on and opened against the `master` branch.
+ * Commit messages should be prefixed with the package(s) they modify.
+ * E.g. "swarm/fuse: ignore default manifest entry"
+
+
+## License
+
+The go-ethereum library (i.e. all code outside of the `cmd` directory) is licensed under the
+[GNU Lesser General Public License v3.0](https://www.gnu.org/licenses/lgpl-3.0.en.html), also
+included in our repository in the `COPYING.LESSER` file.
+
+The go-ethereum binaries (i.e. all code inside of the `cmd` directory) is licensed under the
+[GNU General Public License v3.0](https://www.gnu.org/licenses/gpl-3.0.en.html), also included
+in our repository in the `COPYING` file.