snipt alternatives and similar software solutions
Based on the "Pastebins" category.
Alternatively, view snipt alternatives based on common mentions on social networks and blogs.
-
PrivateBin
A minimalist, open source online pastebin where the server has zero knowledge of pasted data. Data is encrypted/decrypted in the browser using 256 bits AES. -
Sup3rS3cretMes5age
Simple to use, simple to deploy, one time self destruct messaging service, with hashicorp vault as a backend -
Modern Paste
DISCONTINUED. Modern pastebin with a contemporary, minimalistic user interface backed by a robust feature set. -
Paaster.io
Paaster is a secure and user-friendly pastebin application that prioritizes privacy and simplicity. With end-to-end encryption and paste history, Paaster ensures that your pasted code remains confidential and accessible. -
cryptonote
:lock: A simple open source web application that lets users encrypt and share messages that can only be read once. -
ZeroBin
DISCONTINUED. This Project has been renamed and moved to https://github.com/PrivateBin/PrivateBin -
Phaste
DISCONTINUED. A Phalcon-based, MySQL pastebin application with privacy-respecting Piwik integration and syntax highlighting. -
localpaste
a simple python based pastebin you can run locally, with curl for input, just like clbin.com -
Linked.PM
A simple web application which encrypts your private messages (Java Script client-side encryption) and converts them into clickable links and QR-codes.
SaaSHub - Software Alternatives and Reviews
* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of snipt or a related project?
Popular Comparisons
README
Snipt
Running locally
- Clone the repo.
cd snipt
python3 -m venv ~/.virtualenvs/snipt
source ~/.virtualenvs/snipt/bin/activate
pip install -r requirements.txt
brew install postgresql
brew services start postgresql
createuser snipt
createdb snipt --owner=snipt
cp settings_local.py-template settings_local.py
// modify if necessarypython manage.py migrate
make run
Deploying on Dokku
dokku apps:create snipt
dokku postgres:create snipt
dokku postgres:link snipt snipt
scp snipt.dump [email protected]:/home/nsergeant
dokku postgres:connect snipt < snipt.dump
dokku domains:add snipt snipt.net
dokku storage:mount snipt /var/lib/dokku/data/storage/snipt-whoosh:/app/snipt-whoosh
dokku config:set [email protected] SECRET_KEY=<some-secret-key> USE_SSL=true WHOOSH_PATH=/app/snipt-whoosh/whoosh_index
git remote add dokku [email protected]:snipt
git push dokku
Automatic deploy to Heroku
You can click the button below to automatically deploy Snipt to Heroku.
Manual deploy to Heroku
- Clone the repo.
heroku create
heroku addons:add heroku-postgresql:hobby-dev
heroku addons:add searchbox
heroku config:add SECRET_KEY=<some-secret-key>
git push heroku
heroku run python manage.py migrate
heroku run python manage.py createsuperuser
- Visit yourapp.herokuapp.com and login with the user you just created.
Updating your Heroku instance after an automatic deploy
git clone https://github.com/nicksergeant/snipt
cd snipt
git checkout heroku
heroku git:remote -a <your-instance-name>
git push heroku heroku:master
Options
If you want email support (for password resets, server errors, etc):
heroku addons:create postmark:10k
heroku run addons:open postmark
-> use an email you control and confirm itheroku config:add POSTMARK_EMAIL=<email_from_above>
If you want to disable user-facing signup:
heroku config:set DISABLE_SIGNUP=true
If you want to enable Django's DEBUG mode:
heroku config:add DEBUG=true
If you want to enable SSL on a custom domain after you've configured your Heroku SSL cert:
heroku config:add USE_SSL=true