mirror of
https://github.com/ditkrg/rails-template.git
synced 2026-01-22 22:06:41 +00:00
12 lines
261 B
Ruby
12 lines
261 B
Ruby
module Envs
|
|
def dot_env_configurations
|
|
file '.env', <<~CODE
|
|
DATABASE__HOST=localhost
|
|
DATABASE__USERNAME=postgres
|
|
DATABASE__PASSWORD=mysecretpassword
|
|
DATABASE__NAPME=beas_api_development
|
|
DATABASE__PORT=5432
|
|
CODE
|
|
end
|
|
end
|