config.php.j2 360 B

12345678910111213
  1. <?php
  2. define("Config", [
  3. 'port' => {{ app_tulip_listen_port }},
  4. "database" => [
  5. "driver" => "pgsql",
  6. "host" => "{{ app_tulip_db_host }}",
  7. "port" => {{ app_tulip_db_port }},
  8. "name" => "{{ app_tulip_db_name }}",
  9. "user" => "{{ app_tulip_db_user }}",
  10. "password" => "{{ app_tulip_db_password }}",
  11. ],
  12. ]);