forked from agorise/c-ipfs
1.2 KiB
1.2 KiB
C-IPFS
IPFS implementation in C, (not just an API client library).
Quick start for users:
- ipfs init to create an ipfs repository on your machine
- ipfs add MyFile.txt to add a file to the repository, will return with a hash that can be used to retrieve the file.
- ipfs cat hash to retrieve a file from the repository
For techies (ipfs spec docs):
Prerequisites: To compile the C version you will need:
And of course this project at https://github.com/Agorise/c-ipfs
The compilation at this point is simple, but not very flexible. Place all of these projects in a directory. Compile all (the order above is recommended) by going into each one and running "make all".