Files
bit/app/config/env.cr
T
2024-05-13 08:14:47 +02:00

7 lines
167 B
Crystal

ENV["ENV"] ||= "development"
{% if env("ENV") != "production" %}
require "dotenv"
Dotenv.load ".env.#{ENV["ENV"]}" # File must exist in non-production!
{% end %}