Skip to content

feat: enable gc #826

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

Merged
merged 1 commit into from
Feb 16, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Since we're using [ipfsd-ctl](https://github.com/ipfs/js-ipfsd-ctl), we have our

### Which flags do we use to boot IPFS?

By default we use the flags `--migrate=true --routing=dhtclient` when running the IPFS daemon. They can be changed via the configuration file, which can be easily accessed as mentioned above.
By default we use the flags `--migrate=true --routing=dhtclient ----enable-gc=true` when running the IPFS daemon. They can be changed via the configuration file, which can be easily accessed as mentioned above.

## License

Expand Down
2 changes: 1 addition & 1 deletion src/utils/store.js
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ if (store.get('version') !== 5) {
store.set('ipfsConfig', {
type: 'go',
path: '',
flags: ['--migrate=true', '--routing=dhtclient'],
flags: ['--migrate=true', '--routing=dhtclient', '--enable-gc=true'],
keysize: 2048
})

Expand Down