Added shortcode chars as an environment variable

This commit is contained in:
Alejandro Celaya
2016-05-01 11:21:54 +02:00
parent 3bb899bced
commit aba7d3185a
4 changed files with 16 additions and 12 deletions

View File

@@ -1,9 +1,12 @@
<?php
return [
'url-shortener' => [
'schema' => getenv('SHORTENED_URL_SCHEMA') ?: 'http',
'hostname' => getenv('SHORTENED_URL_HOSTNAME'),
'url_shortener' => [
'domain' => [
'schema' => getenv('SHORTENED_URL_SCHEMA') ?: 'http',
'hostname' => getenv('SHORTENED_URL_HOSTNAME'),
],
'shortcode_chars' => getenv('SHORTCODE_CHARS'),
],
];