Run amanita to pull in templated files

This commit is contained in:
Keegan Rankin 2023-12-05 14:07:08 -08:00
parent 208a90e7b9
commit 61c93d04db
15 changed files with 533 additions and 9 deletions

12
scripts/example.template Normal file
View file

@ -0,0 +1,12 @@
<?php
$databases['default']['default'] = array(
'database' => "${DB_NAME}",
'username' => "${DB_USER}",
'password' => "${DB_PASSWORD}",
'host' => "127.0.0.1",
'driver' => "mysql",
'port' => 3306,
'prefix' => "",
);
$settings['hash_salt'] = '${SALT}';
$settings['trusted_host_patterns'] = [${TRUSTED_HOSTS}];