16 lines
400 B
Crystal
16 lines
400 B
Crystal
require "log"
|
|
|
|
ENV["ENV"] ||= "development"
|
|
ENV["APP_URL"] ||= "http://localhost:4000"
|
|
ENV["DATABASE_URL"] ||= "sqlite3://./sqlite/data.db?journal_mode=wal&synchronous=normal&foreign_keys=true
|
|
"
|
|
|
|
{% if env("ENV") != "production" %}
|
|
require "dotenv"
|
|
Dotenv.load ".env.#{ENV["ENV"]}" # File must exist in non-production!
|
|
{% end %}
|
|
|
|
{% if env("ENV") == "production" %}
|
|
Log.setup(:error)
|
|
{% end %}
|