-
Notifications
You must be signed in to change notification settings - Fork 411
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: go-ipfs 0.10.0 #904
Conversation
|
@@ -11,11 +11,11 @@ Installing IPFS through the command-line is handy if you plan on building applic | |||
|
|||
## System requirements | |||
|
|||
IPFS requires 512MiB of memory and can run an IPFS node on a Raspberry Pi. However, how much disk space your IPFS installation takes up depends on how much data you're sharing. A base installation takes up about 12MB of disk space, and the [default maximum disk storage](../how-to/configure-node.md) is set to 10GB. | |||
IPFS requires 512MiB of memory and can run an IPFS node on a Raspberry Pi. However, how much disk space your IPFS installation takes up depends on how much data you're sharing. A base installation takes up about 12MB of disk space. One can enable automatic garbage collection via [--enable-gc](/reference/cli/#ipfs-daemon) and adjust the [default maximum disk storage](https://github.com/ipfs/go-ipfs/blob/v0.10.0/docs/config.md#datastorestoragemax) for data retrieved from other peers. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💭 I had to clarify this because by default GC is disabled 😬
@@ -6,6 +6,10 @@ title: Recent releases | |||
|
|||
This section contains information about recent IPFS releases. You can find installation instructions, update information, and release notes here. | |||
|
|||
## [Go-IPFS 0.10](https://github.com/ipfs/go-ipfs/releases/tag/v0.10.0) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
💭 I think we could have JS that is fetching latest N releases via github API, removing the need for this.
Followup item to automate this: #905 |
I wish we could automate this, or ideally, remove the need for hardcoding version number in the URLs (having
/latest
dir)