YouTube v3 Data API Wrapper
If available in Hex, the package can be installed as:
- Add
yt_potion
to your list of dependencies inmix.exs
:
```elixir
def deps do
[{:yt_potion, "~> 0.1.3"}]
end
```
- Ensure
yt_potion
is started before your application:
```elixir
def application do
[applications: [:yt_potion]]
end
```
- In your config.exs file in your Phoenix app:
config :yt_potion, YtPotion,
yt_api_key: System.get_env("YT_API_KEY")