first commit

This commit is contained in:
René Preuß
2021-07-19 20:55:01 +02:00
commit f42347aa99
33 changed files with 8074 additions and 0 deletions

15
config/bunny.php Normal file
View File

@@ -0,0 +1,15 @@
<?php
return [
'storage' => [
'hostname' => env('BUNNY_STORAGE_HOSTNAME'),
'username' => env('BUNNY_STORAGE_USERNAME'),
'password' => env('BUNNY_STORAGE_PASSWORD'),
],
'pull_zone' => [
'id' => env('BUNNY_PULL_ZONE_ID'),
],
'api' => [
'access_key' => env('BUNNY_API_ACCESS_KEY'),
],
];