szimek / sharedrop

Easy P2P file transfer powered by WebRTC - inspired by Apple AirDrop
https://www.sharedrop.io
MIT License
9.99k stars 729 forks source link

how to deploy sharedrop on VPS? #72

Closed chinobing closed 5 years ago

chinobing commented 5 years ago

how to deploy sharedrop on VPS?

szimek commented 5 years ago

More or less as described in the README.

You'll need to set up Firebase, generate a random secret and then set the following environment variables:

FIREBASE_SECRET: <from your Firebase config>
FIREBASE_URL: <from your Firebase config>
SECRET: <some random string>

Run yarn to install all dependencies and yarn build to generate the app into dist folder.

chinobing commented 5 years ago

thanks alot.