aboutsummaryrefslogtreecommitdiff
path: root/README-bgstack15.md
diff options
context:
space:
mode:
authorB. Stack <bgstack15@gmail.com>2022-02-11 18:54:56 -0500
committerB. Stack <bgstack15@gmail.com>2022-02-11 18:54:56 -0500
commit6641c28ab2109277ed9e15559d3ecdc10cc5b807 (patch)
tree6b98ea7417647f5e8574df7a9b2b7d69813d5651 /README-bgstack15.md
parentfixed deps which means flask 1 (diff)
downloadstackbin-6641c28ab2109277ed9e15559d3ecdc10cc5b807.tar.gz
stackbin-6641c28ab2109277ed9e15559d3ecdc10cc5b807.tar.bz2
stackbin-6641c28ab2109277ed9e15559d3ecdc10cc5b807.zip
Fix dep problem so flask>=2.0.0 now!
By just writing a new initdb command so we don't need manage.py anymore.
Diffstat (limited to 'README-bgstack15.md')
-rw-r--r--README-bgstack15.md21
1 files changed, 21 insertions, 0 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.
bgstack15