From c615845f1bec6b09c0c6da0f85a07121c8d9c8f8 Mon Sep 17 00:00:00 2001 From: Christian Willsm Date: Sat, 27 Nov 2021 15:45:09 +0100 Subject: [PATCH] added BYCEPS Instalation.md --- BYCEPS-Instalation.md | 37 +++++++++++++++++++++++++++++++++++++ 1 file changed, 37 insertions(+) create mode 100644 BYCEPS-Instalation.md diff --git a/BYCEPS-Instalation.md b/BYCEPS-Instalation.md new file mode 100644 index 0000000..af76cca --- /dev/null +++ b/BYCEPS-Instalation.md @@ -0,0 +1,37 @@ +BYCEPS Instalation +=== + +# root user +```bash +$ groupadd byceps +$ usermod -a -G byceps USER +``` + +```bash +$ mkdir /svr/byceps +``` + +```bash +chown byceps:USER /srv/byceps +``` + +```bash +apt install git postgresql python3 python3-dev python3-venv redis-server nginx uwsgi +``` +# normal user + +```bash +$ cd //srv +$ git clone https://github.com/byceps/byceps.git +``` + +```bash +$ $ . ./venv/bin/activate +``` + +```bash +(venv)$ pip install --upgrade pip +(venv)$ pip install -r requirements.txt +(venv)$ pip install -e . +``` +