aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--README-bgstack15.md21
-rw-r--r--initdb.py2
-rw-r--r--pastebin.py2
-rw-r--r--requirements.txt2
4 files changed, 25 insertions, 2 deletions
diff --git a/README-bgstack15.md b/README-bgstack15.md
index 398d629..34137f5 100644
--- a/README-bgstack15.md
+++ b/README-bgstack15.md
@@ -1,6 +1,27 @@
+# Instructions
+
+Generate new db.
+
+ python3 initdb.py
+
+Run server.
+
+ FLASK_APP=pastebin.py FLASK_DEBUG=True flask run --host='0.0.0.0'
+
+# Improvements
+I still need to practice these:
+
+* Support editing the title?
+* Fix the private bins problem: they always return 403
+* Support deleting somehow: from an admin panel, or a link on the page?
+* use UUIDs for link instead of sequential integers?
+
# Alternatives
## Unresearched
https://github.com/yasoob/logit-bin
https://github.com/AWilliams17/PasteMate
https://github.com/bsamadi/flask-pastebin
+
+## Attempted
+https://github.com/Tygs/0bin sounds cool but it uses a stack I'm unfamiliar with and it had some issues and I didn't want to bother with it.
diff --git a/initdb.py b/initdb.py
new file mode 100644
index 0000000..b56872f
--- /dev/null
+++ b/initdb.py
@@ -0,0 +1,2 @@
+from pastebin import db
+db.create_all()
diff --git a/pastebin.py b/pastebin.py
index c2ed89d..9807b01 100644
--- a/pastebin.py
+++ b/pastebin.py
@@ -75,7 +75,7 @@ def show_paste(paste_id):
try:
sign = request.args.get('s', '')
assert str(paste.id) == \
- Signer(app.secret_key, salt='jackson').unsign(sign)
+ Signer(app.secret_key, salt='jackson').unsign(sign).decode("utf-8")
except:
abort(403)
return render_template('show_paste.html', paste=paste)
diff --git a/requirements.txt b/requirements.txt
index b1b3d3f..ed75ab4 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1,4 +1,4 @@
-Flask<2.0.0
+Flask
Flask-SQLAlchemy
Flask-Script
PyMySQL
bgstack15