Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 741 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 741 Bytes

Steps

Python

Install/Update Pipenv

pip install --user pipenv

pip install --user --upgrade pipenv

Install dependencies

pipenv install

python -m pipenv install

Run

pipenv run uvicorn main:app --reload

python -m pipenv run uvicorn main:app --reload

Node.js

Install dependencies

yarn install

Install PM2 (Optional)

npm install pm2 -g

Run

yarn start or pm2 start ecosystem.config.js && pm2 logs

RabbitMQ (Docker)

docker run -it --rm --name rabbitmq -p 5672:5672 -p 15672:15672 rabbitmq:3.11-management