PubFolder emulates Dropbox's discontinued public folder.
We missed Dropbox's public folders. We liked the ability to predict a file's path and the ability to directly link to a file (without viewing it in Dropbox's UI).
No, we have a hosted version at pubfolder.com.
- Create a virtualenv
virtualenv -p python3 venv
- Install the requirements
pip install -r requirements.txt
- Install and run redis
- Run the web server with
DEBUG=1 BASE_URL=http://localhost:8000/ COOKIE_SECRET=SOME_RND_STRING DBX_APP_KEY=6666666666 DBX_APP_SECRET=7777777777 python server.py
replacing environment variable values. You can get the Dropbox app key & secret by creating a new Dropbox App. - If you want to deploy your own production version, remove the
DEBUG=1
and setBASE_URL
correctly.