Skip to content

getting started

stefano edited this page Nov 27, 2025 · 1 revision

requirements

installation

  1. clone the repository:

    git clone https://github.com/govdbot/govd.git && cd govd
  2. create and edit the .env file to match your setup. make sure the database host is set to:

    DB_HOST=db
    

    at minimum, you need to set the following variables:

    variable description
    BOT_TOKEN your telegram bot token from @botfather
    DB_HOST database host, must be db when using docker
    DB_USER database username
    DB_PASSWORD database password
    DB_NAME database name

    refer to .env.example for all available options.

  3. start all services with docker:

    docker compose up -d

Clone this wiki locally