ScoopInstaller / Extras

📦 The Extras bucket for Scoop.
https://scoop.sh
The Unlicense
1.79k stars 1.35k forks source link

go-ipfs needs to disable indexing on ~/.ipfs #532

Open TangentFoxy opened 7 years ago

TangentFoxy commented 7 years ago

By default, the go-ipfs package's ipfs init uses ~/.ipfs for storing content, and Windows' indexing service will conflict with and break usage. Running attrib +i ~/.ipfs fixes this (well, if you expand ~ first).

I think the package definition should include running ipfs init and then running the attibution command. Additionally, if we want IPFS's data to be stored in the persist directory within scoop, that could be added as well.

NatoBoram commented 5 years ago

I think the package definition should include running ipfs init

Some people might want to use experimental features such as Badger datastore.

ipfs init --profile=badgerds

I'm not sure it should run ipfs init. However, it could run check if %IPFS_PATH% exists then mkdir %IPFS_PATH% and run attrib +i %IPFS_PATH%.