Telegram bot for notifying car owners
https://core.telegram.org/bots#how-do-i-create-a-bot
git clone <https or SSH URL>
cd <repository_name>Create and edit .env file from the .env.example
cp .env.example .envcreatedb -U postgres -h localhost -p 5432 bot_car_number# Create and activate virtual environment
python3.12 -m venv .venv
source .venv/bin/activate
# Install dependencies
pip install -e .
# Export environment variables
export $(grep -v '^#' .env | xargs)
# Run migrations
alembic upgrade head
# Run app
python -m bot_car_number# Create and activate virtual environment
uv venv
source .venv/bin/activate
# Install dependencies
uv sync
# Export environment variables
export $(grep -v '^#' .env | xargs)
# Run migrations
alembic upgrade head
# Run app
uv run python -m bot_car_number