diff --git a/.env.example b/.env.example deleted file mode 100644 index 59c8e7a..0000000 --- a/.env.example +++ /dev/null @@ -1,8 +0,0 @@ -TELEGRAM_BOT_TOKEN=XXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXXX -VERBOSITY=0.33 -LOG_LEVEL=WARNING -POLL_INTERVAL=3 -BOT_GREETING="Hi! I'm a friendly, crazy slightly psychopath robot" -MAX_HUMAN_USERNAME_LENGTH=100 -MAX_CHINESE_CHARS_PERCENT=0.15 -WELCOME_DELAY=330 diff --git a/README.md b/README.md index f83f01c..d942089 100644 --- a/README.md +++ b/README.md @@ -16,13 +16,17 @@ example we are using python -m venv: $ python -m venv pydeckard $ cd pydeckard $ source ./bin/activate -$ ./bin/pip install git+https://github.com/misanram/pydeckard.git@Instalar-desde-GitHub +$ ./bin/pip install git+https://github.com/pythoncanarias/pydeckard.git ~~~ As a developer, you must install it in this other way: ~~~console -$ ./bin/pip install git+https://github.com/misanram/pydeckard.git@Instalar-desde-GitHub[dev] +$ git clone https://github.com/pythoncanarias/pydeckard.git +$ cd pydeckard +$ python3 -m venv venv +$ source ./venv/bin/activate +$ pip3 install -e .[dev] ~~~ After installation, the next step is to create the .env configuration file and @@ -50,13 +54,7 @@ using the instructions that setup has provided. You can view the bot log using: ~~~console -$ journalctl -u pydeckard.service -f systemd -~~~ - -You can use the flag `--verbose` (or `-v') to get more information in the console: - -~~~console -$ python3 bot.py --verbose +$ journalctl -u pydeckard.service -f ~~~ @@ -66,4 +64,4 @@ Use pytest: ~~~console $ python3 -m pytest -~~~ \ No newline at end of file +~~~ diff --git a/dev-requirements.txt b/dev-requirements.txt deleted file mode 100644 index 5670a2e..0000000 --- a/dev-requirements.txt +++ /dev/null @@ -1,4 +0,0 @@ -ruff -rope -pytest -freezegun