Peer Base Pinner

A pinner for peer-base ... backup collaborations using IPFS, IPLD, IPNS + ipfs-cluster
Alternatives To Peer Base Pinner
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Peer Pad596
4 years ago1August 17, 2017101mitJavaScript
📝 Online editor providing collaborative editing in really real-time using CRDTs and IPFS.
Notes377
8 months ago348mit
IPFS Collaborative Notebook for Research
Peer Base209533 years ago10February 01, 201999mitJavaScript
Build real-time collaborative DApps on top of IPFS
Quiet120
a day ago432gpl-3.0C
A private, p2p alternative to Slack and Discord built on Tor & IPFS
Quantizr111
a day ago8mitJava
Quanta is an open-source Social Media (Fediverse) platform for wikis, micro-blogging, collaboration, publishing, secure messaging, file sharing, and video/audio sharing. Browser-based, and written in Java and TypeScript.
Dynamic Data And Capabilities55
3 years ago20
[ARCHIVED] Dynamic Data and Capabilities in IPFS Working Group
Editor Legacy53
5 years ago20mitJavaScript
📝 Collaborative real-time edition of parcel scenes, with IPFS uploading. Based on aframe-inspector
Local Offline Collab45
8 months ago6mit
Local Offline Collaboration Special Interest Group
Ipfs Crdt Shared Editing36
4 years ago2mitJavaScript
Decentralized Real-Time Collaborative Documents - Conflict-free editing in the browser using js-IPFS and CRDTs.
Decentralized Social Apps Guide25
3 months ago
An awesome overview of existing open-source decentralized apps and platforms for social networking, engagement and collaboration
Alternatives To Peer Base Pinner
Select To Compare


Alternative Project Comparisons
Readme

peer-base-pinner

A pinner for peer-base ... backup collaborations using IPFS, IPLD, IPNS + ipfs-cluster

Initial Setup

$ IPFS_HOME=/tmp/peer-base-pinner ipfs init
$ cat << EOF > .env
# Expose a websocket proxy (optional)
WEBSOCKET_ANNOUNCE_HOST=peer-base-pinner.example.com
WEBSOCKET_EXTERNAL_PORT=8080
## Starts a proxy and announces it as /dns4/<host>/tcp/<port>/ws/ipfs/<backplane-peer-id>
##
## If running on a platform such as Heroku that requires a 'Host' header in
## order to route to the correct app, and because it is not currently possible
## to embed 'Host' headers in multiaddrs, it maybe be necessary to manually
## proxy through an additional layer (such as nginx) in order to add the
## 'Host header. See: https://github.com/multiformats/multiaddr/issues/63
## An example nginx config is shown below.

# The IPFS cluster
BOOTSTRAP1=/dns4/example.com/tcp/9097/ipfs/QmXXX

# Set STARTUP_MODE to init on first run, then load-from-pinner
STARTUP_MODE=init

# ipfs-cluster stuff
IPFS_CLUSTER_API=/dns4/example.com/tcp/9097/ipfs/QmXXX
IPFS_CLUSTER_LABEL=some-label
IPFS_CLUSTER_USER=jimpick
IPFS_CLUSTER_PASSWORD=iloveipfs

# Create a new Peer Id and private key (from /tmp/peer-base-pinner/config)
PEER_ID=QmYYY
PRIV_KEY=ZZZZZZZZZ....=
EOF
$ heroku maintenance:on
$ heroku plugins:install heroku-config
$ heroku config:push
$ heroku maintenance:off
# wait for it to start up
$ heroku config:set IPNS_MODE=load

Example nginx websocket proxy to add Host header

server {
    listen 8080;
    server_name peer-pad-pinner.example.com;
    location / {
        proxy_pass http://peer-pad-pinner.herokuapp.com:80;
        proxy_cache_bypass $http_upgrade;
        proxy_http_version 1.1;
        proxy_set_header Host "peer-pad-pinner.herokuapp.com:80";
        proxy_set_header Origin "http://peer-pad-pinner.herokuapp.com:80";
        proxy_set_header Upgrade $http_upgrade;
        proxy_set_header Connection "Upgrade";
     }
}
Popular Ipfs Projects
Popular Collaboration Projects
Popular Networking Categories

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Javascript
Backup
Collaboration
Ipfs