-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
d3fd9bc
commit fba1a96
Showing
2 changed files
with
14 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
`ipfs-upload-client` is a minimal CLI tool to upload files or directories to Infura's IPFS or another API endpoint. | ||
|
||
## Example | ||
|
||
`ipfs-upload-client --id xxxxx --secret yyyyy /path/to/data` | ||
|
||
## Options | ||
``` | ||
--id string your Infura ProjectID | ||
--pin whether or not to pin the data (default true) | ||
--secret string your Infura ProjectSecret | ||
--url string the API URL (default "https://ipfs.infura.io:5001") | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
module api-client | ||
module github.com/INFURA/ipfs-upload-client | ||
|
||
go 1.15 | ||
|
||
|