Skip to content

Latest commit

 

History

History
24 lines (18 loc) · 657 Bytes

README.md

File metadata and controls

24 lines (18 loc) · 657 Bytes

NK TOLMIN - backend

!!! The latest version of this repository is now hosted on a private GitLab server. As a reference to my work, I have cloned the repository to my personal GitHub profile.

start database:

docker-compose up -d

create and install virtual environment:

copy .env file
python3 -m venv venv
. venv/bin/activate
python3 -m pip install -r requirements.txt

create database

python3 schema.py

run project

python3 app.py

in new console tab run worker

rq worker

if you get an error rq: command not found run
pip uninstall virtualenv
sudo pip install virtualenv