Spaces:
Build error
Build error
| @echo off | |
| echo Creating virtual environment... | |
| python -m venv venv | |
| echo Activating virtual environment... | |
| call venv\Scripts\activate | |
| echo Installing dependencies... | |
| pip install -r requirements.txt | |
| echo Copying .env-example to .env... | |
| copy .env-example .env | |
| echo Please edit the .env file to add your API_ID and API_HASH. | |
| pause | |