Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rameshvarun/ipfs-share
A simple IPFS-powered Pastebin / Image Host / File Sharing application.
https://github.com/rameshvarun/ipfs-share
Last synced: 20 days ago
JSON representation
A simple IPFS-powered Pastebin / Image Host / File Sharing application.
- Host: GitHub
- URL: https://github.com/rameshvarun/ipfs-share
- Owner: rameshvarun
- License: isc
- Created: 2015-02-23T01:42:29.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2023-03-31T00:15:56.000Z (almost 2 years ago)
- Last Synced: 2024-12-21T19:05:24.625Z (21 days ago)
- Language: HTML
- Homepage:
- Size: 48.8 KB
- Stars: 73
- Watchers: 7
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome - rameshvarun/ipfs-share - A simple IPFS-powered Pastebin / Image Host / File Sharing application. (HTML)
- awesome-ipfs-cn - ipfs-share - Pastebin / Image主机/文件共享应用程序 (应用)
- awesome-starred - rameshvarun/ipfs-share - A simple IPFS-powered Pastebin / Image Host / File Sharing application. (others)
README
# IPFS Share
An example IPFS-powered Pastebin / Image Host / File Sharing application.
## Instructions (Docker)
The easiest way to start the application is using Docker compose.
```bash
git clone https://github.com/rameshvarun/ipfs-share.git
cd ipfs-share && docker compose up
```You can now visit the application at `http://localhost:3000/`.
## Instructions (non-Docker)
To run outside of a Docker container, you need a few prequisites.
- A version of [Go](https://go.dev/doc/install)
- A running IPFS daemon.
- The [IPFS Desktop app](https://docs.ipfs.tech/install/ipfs-desktop/) provides one while it is running.
- Otherwise you can run `ipfs daemon` to run one from the CLI.```bash
go get github.com/rameshvarun/ipfs-share
cd ~/go/src/github.com/rameshvarun/ipfs-share
go run server.go
```