aboutsummaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
authorB Stack <bgstack15@gmail.com>2022-02-14 15:42:18 -0500
committerB Stack <bgstack15@gmail.com>2022-02-14 15:42:18 -0500
commit75d6e39dcaa27f0404e606a188fa4de46cae91f9 (patch)
tree3377f78bd332e2c93e8dfc262f92918284a664cc /README.md
parentsuppress favicon errors (diff)
downloadstackbin-75d6e39dcaa27f0404e606a188fa4de46cae91f9.tar.gz
stackbin-75d6e39dcaa27f0404e606a188fa4de46cae91f9.tar.bz2
stackbin-75d6e39dcaa27f0404e606a188fa4de46cae91f9.zip
add initial centos7 doc
Diffstat (limited to 'README.md')
-rw-r--r--README.md10
1 files changed, 9 insertions, 1 deletions
diff --git a/README.md b/README.md
index be7d7eb..8e5cc6b 100644
--- a/README.md
+++ b/README.md
@@ -13,7 +13,15 @@ This is my proposed solution to my pastebin problem.
* UUIDs instead of sequential integer ID numbers
* Private pastes (accessible to admin, and to users with the whole link)
-# Instructions
+# Using stackbin
+## Installing
+
+You can use flask for development servers, and uwsgi for production. For a production stack on CentOS 7:
+
+ yum install nginx uwsgi uwsgi-logger-file python36-flask uwsgi-plugin-python36 python36-sqlalchemy python36-uwsgidecorators
+ pip3 install --user flask-sqlalchemy pytimeparse
+
+## Instructions
Configure the application with `config.cfg` based on `config.cfg.example`.
bgstack15