byceps-instalation/BYCEPS-Instalation.md
2021-11-28 13:57:43 +01:00

562 B

BYCEPS Instalation

root user

$ addgroup byceps
$ usermod -a -G byceps USER
$ mkdir /svr/byceps
chown byceps:USER /srv/byceps
apt install git postgresql python3 python3-dev python3-venv redis-server nginx uwsgi

normal user

$ cd //srv
$ git clone https://github.com/byceps/byceps.git
python3 -m venv --system-site-packages venv
$ . ./venv/bin/activate
(venv)$ pip install --upgrade pip
(venv)$ pip install -r requirements.txt
(venv)$ pip install -e .