PasswordPusher is an opensource application to communicate passwords over the web. Links to passwords expire after a certain number of views and/or time has passed.
Hosted at pwpush.com but you can also easily run your own instance internally on Docker, Kubernetes, OpenShift or on Heroku with just a few steps.
Follow PasswordPusher on Twitter for the latest news, updates and changes.
One click deploy to Heroku Cloud without having to set up servers.
Docker images of PasswordPusher are available on Docker hub.
➜ ephemeral
docker run -d -p "5000:5000" pglombardo/pwpush-ephemeral:latest
➜ using an External Postgres Database
docker run -d -p "5000:5000" pglombardo/pwpush-postgres:latest
Included in this repository is containerization/pwpush-postgres/docker-compose.yaml
which can be used by simply running:
docker-compose up -d
docker-compose down
We currently don't supply a prebuilt Kubernetes YAML file yet but you can deploy the above Docker images using this documentation.
See this blog post on how to deploy PasswordPusher to Azure by Craig McLaren.
See our OpenShift documentation.
Make sure you have git and Ruby installed and then:
git clone [email protected]:pglombardo/PasswordPusher.git
cd PasswordPusher
gem install bundler
bundle install --without development production test --deployment
bundle exec rake assets:precompile
RAILS_ENV=private bundle exec rake db:setup
foreman start internalweb
Then view the site @ http://localhost:5000/.
Note: You can change the listening port by modifying the Procfile
Thanks to:
-
@sfarosu for contributing the Docker, Kubernetes & OpenShift container support.
-
@iandunn for better password form security.
-
Kasper 'kapöw' Grubbe for the JSON POST fix.
-
JarvisAndPi for the favicon design
-
The PasswordPusher Alfred Workflow for Mac users.
-
Kamil Procyszyn put together a nice PowerShell script for Password Pusher.
-
lnfnunes created a NodeJS CLI wrapper for Password Pusher to be easily used in the terminal.
-
CLI written in Python that uses pwpush.com as a backend
-
quasarj created a django application based off of PasswordPusher