Crypto-Signal icon indicating copy to clipboard operation
Crypto-Signal copied to clipboard

problem install "Crypto-Signal" with Python

Open shehnipoor opened this issue 3 years ago • 1 comments

How do I install "Crypto-Signal" with Python?

shehnipoor avatar Jun 28 '21 11:06 shehnipoor

Hi, what do you mean?

Those are the instructions with Docker

Be sure you have git installed in your system.

Clone this repo git clone https://github.com/CryptoSignal/crypto-signal.git

Enter to cripto-signal folder cd crypto-signal

Switch to develop branch git checkout develop

Create a config.yml file and put it into "app" folder.

Build your own Docker image, for example, docker build -t dev/crypto-signals:latest .

For testing and debugging run docker with "-t" option docker run --rm -ti -v $PWD/app:/app dev/crypto-signals:latest

For production run in daemon mode using "-d" option docker run --rm -di -v $PWD/app:/app dev/crypto-signals:latest

Alorse avatar Aug 06 '21 17:08 Alorse