lotus/README.md

56 lines
3.9 KiB
Markdown
Raw Normal View History

2020-07-28 13:17:54 +00:00
<p align="center">
2020-09-17 18:56:43 +00:00
<a href="https://docs.filecoin.io/" title="Filecoin Docs">
2020-07-28 13:17:54 +00:00
<img src="documentation/images/lotus_logo_h.png" alt="Project Lotus Logo" width="244" />
</a>
</p>
2019-10-15 14:54:29 +00:00
2020-07-28 13:17:54 +00:00
<h1 align="center">Project Lotus - 莲</h1>
2019-08-02 04:26:11 +00:00
2020-08-17 14:21:27 +00:00
<p align="center">
<a href="https://circleci.com/gh/filecoin-project/lotus"><img src="https://circleci.com/gh/filecoin-project/lotus.svg?style=svg"></a>
<a href="https://codecov.io/gh/filecoin-project/lotus"><img src="https://codecov.io/gh/filecoin-project/lotus/branch/master/graph/badge.svg"></a>
<a href="https://goreportcard.com/report/github.com/filecoin-project/lotus"><img src="https://goreportcard.com/badge/github.com/filecoin-project/lotus" /></a>
2020-11-23 08:15:17 +00:00
<a href=""><img src="https://img.shields.io/badge/golang-%3E%3D1.15.5-blue.svg" /></a>
2020-08-17 14:21:27 +00:00
<br>
</p>
2020-07-28 13:17:54 +00:00
Lotus is an implementation of the Filecoin Distributed Storage Network. For more details about Filecoin, check out the [Filecoin Spec](https://spec.filecoin.io).
2020-06-12 16:57:30 +00:00
## Building & Documentation
2020-09-17 18:56:43 +00:00
For instructions on how to build, install and setup lotus, please visit [https://docs.filecoin.io/get-started/lotus](https://docs.filecoin.io/get-started/lotus/).
2020-06-12 16:57:30 +00:00
2020-06-22 15:45:24 +00:00
## Reporting a Vulnerability
Please send an email to security@filecoin.org. See our [security policy](SECURITY.md) for more details.
2021-01-12 15:53:22 +00:00
## Related packages
2021-01-12 15:53:22 +00:00
These repos are independent and reusable modules, but are tightly integrated into Lotus to make up a fully featured Filecoin implementation:
2019-08-02 06:26:24 +00:00
2021-01-12 15:53:22 +00:00
- [go-fil-markets](https://github.com/filecoin-project/go-fil-markets) which has its own [kanban work tracker available here](https://app.zenhub.com/workspaces/markets-shared-components-5daa144a7046a60001c6e253/board)
- [specs-actors](https://github.com/filecoin-project/specs-actors) which has its own [kanban work tracker available here](https://app.zenhub.com/workspaces/actors-5ee6f3aa87591f0016c05685/board)
2020-07-28 13:17:54 +00:00
2021-01-12 15:53:22 +00:00
## Contribute
2020-07-28 13:17:54 +00:00
2021-01-12 15:53:22 +00:00
Lotus is a universally open project and welcomes contributions of all kinds: code, docs, and more. However, before making a contribution, we ask you to heed these recommendations:
2020-07-28 13:17:54 +00:00
2021-01-12 15:53:22 +00:00
1. If the proposal entails a protocol change, please first submit a [Filecoin Improvement Proposal](https://github.com/filecoin-project/FIPs).
2. If the change is complex and requires prior discussion, [open an issue](github.com/filecoin-project/lotus/issues) or a [discussion](https://github.com/filecoin-project/lotus/discussions) to request feedback before you start working on a pull request. This is to avoid disappointment and sunk costs, in case the change is not actually needed or accepted.
3. Please refrain from submitting PRs to adapt existing code to subjective preferences.
2020-07-28 13:17:54 +00:00
2021-01-12 15:53:22 +00:00
When implementing a change:
2021-01-12 16:01:30 +00:00
1. Adhere to the standard Go formatting guidelines, e.g. [Effective Go](https://golang.org/doc/effective_go.html). Run `go fmt`.
2. Stick to the idioms and patterns used in the codebase. Familiar-looking code has a higher chance of being accepted than eerie code. Pay attention to commonly used variable names, avoidance of naked returns, error handling patterns, etc.
3. Comments: follow the advice on the [Commentary](https://golang.org/doc/effective_go.html#commentary) section of Effective Go.
4. Minimize code churn. Only modify what is strictly necessary to get a quicker response from maintainers.
5. Lint your code with [`golangci-lint`](https://golangci-lint.run) (CI will reject your PR if unlinted).
6. Add tests.
7. Title the PR in a meaningful way and describe the rationale and the thought process in the PR description.
8. Write clean, thoughtful, and detailed [commit messages](https://chris.beams.io/posts/git-commit/). This is even more important than the PR description, because commit messages are stored _inside_ the Git history. One good rule is: if you are happy posting the commit message as the PR description, then it's a good commit message.
2020-07-28 13:17:54 +00:00
2019-08-02 04:26:11 +00:00
## License
2019-12-01 08:28:50 +00:00
2019-10-09 01:27:59 +00:00
Dual-licensed under [MIT](https://github.com/filecoin-project/lotus/blob/master/LICENSE-MIT) + [Apache 2.0](https://github.com/filecoin-project/lotus/blob/master/LICENSE-APACHE)