Remove APP_ENV completely, use ENVIRONMENT instead

This commit is contained in:
Uku Taht 2020-05-28 21:31:54 +03:00
parent 9f446c83fd
commit 01bc5911d1

View File

@ -1,5 +1,5 @@
defmodule Plausible.Slack do
@app_env System.get_env("APP_ENV") || "dev"
@app_env System.get_env("ENVIRONMENT") || "dev"
require Logger
def notify(text) do