# `ConfigServer`

This module implements a GenServer that monitors a git repository.
The content of the repository is parsed and changes are handed to a callback.

# `child_spec`

Returns a specification to start this module under a supervisor.

See `Supervisor`.

# `config`

Retrieve the current config.

# `get_application_env`

# `start_link`

```elixir
@spec start_link([]) :: {:ok, pid()}
@spec start_link(%{
  repo_url: String.t(),
  repo_path: String.t(),
  pull_interval_ms: integer(),
  state_change_fun: nil | fun()
}) :: {:ok, pid()}
```

---

*Consult [api-reference.md](api-reference.md) for complete listing*
