/pyrun

This bot helps you test python codes

Primary LanguagePython

This bot helps you test python codes

1. Create virtual environment and install packages

Windows

python -m venv venv && venv\Scripts\activate && pip install -r requirements.txt

Linux/Mac

python3 -m venv venv && source venv/bin/activate && pip3 install -r requirements.txt

2. Create .env file and copy all variables from .env.example to it and customize your self (if needed)

cp .env.template .env

3. Run app.py

Windows

python main.py

Linux/Mac

python3 main.py