Configuration ci cd

This commit is contained in:
bastien
2026-07-10 16:00:20 +02:00
parent 5366fa3794
commit 412f7958fe
8 changed files with 535 additions and 0 deletions
+47
View File
@@ -0,0 +1,47 @@
APP_NAME='{{ vhost.package_name }}'
APP_ENV='{{ vhost.app_env | default('production') }}'
APP_DEBUG='{{ vhost.app_debug | default('false') }}'
APP_URL='{{ vhost.app_url }}'
APP_KEY='{{ vhost.app_key }}'
APP_TIMEZONE='{{ vhost.app_timezone | default('Europe/Paris') }}'
APP_LOCALE='fr'
APP_FALLBACK_LOCALE='fr'
LOG_CHANNEL='stack'
LOG_STACK='single'
LOG_LEVEL='{{ vhost.app_log_lvl | default('info') }}'
DB_CONNECTION='mysql'
DB_HOST='localhost'
DB_PORT='8001'
DB_DATABASE='{{ vhost.app_db_name }}'
DB_USERNAME='{{ vhost.app_db_user }}'
DB_PASSWORD='{{ vhost.app_db_password }}'
SESSION_DRIVER='{{ vhost.app_session_driver | default('database') }}'
SESSION_LIFETIME='120'
QUEUE_CONNECTION='{{ vhost.app_queue_connection | default('database') }}'
CACHE_STORE='{{ vhost.app_cache_store | default('database') }}'
BROADCAST_CONNECTION='log'
FILESYSTEM_DISK='local'
STRIPE_KEY='{{ vhost.app_stripe_key | default('') }}'
STRIPE_SECRET='{{ vhost.app_stripe_secret_key | default('') }}'
STRIPE_WEBHOOK_SECRET='{{ vhost.app_stripe_webhook_secret | default('') }}'
CORS_ALLOWED_ORIGINS='{{ vhost.app_cors_allowed_origins | default(vhost.app_url) }}'
LAVERIE_MACHINE_API_KEY='{{ vhost.app_laverie_machine_api_key | default('') }}'
LAVERIE_SIM_CYCLE_SECONDS='{{ vhost.app_laverie_sim_cycle_seconds | default('30') }}'
LAVERIE_BOOKING_FEE='{{ vhost.app_laverie_booking_fee | default('1.00') }}'
LAVERIE_BOOKING_CANCEL_GRACE_HOURS='{{ vhost.app_laverie_booking_cancel_grace_hours | default('2') }}'
LAVERIE_BOOKING_NO_SHOW_GRACE_MINUTES='{{ vhost.app_laverie_booking_no_show_grace_minutes | default('15') }}'
LAVERIE_BOOKING_PENALTY_AMOUNT='{{ vhost.app_laverie_booking_penalty_amount | default('3.00') }}'
LAVERIE_MACHINE_OFFLINE_THRESHOLD_MINUTES='{{ vhost.app_laverie_machine_offline_threshold_minutes | default('10') }}'
LAVERIE_MACHINE_OFFLINE_CHECK_ENABLED='{{ vhost.app_laverie_machine_offline_check_enabled | default('false') }}'
LAVERIE_PAYMENT_PROVIDER='{{ vhost.app_laverie_payment_provider | default('stripe') }}'
LAVERIE_TOP_UP_MIN='{{ vhost.app_laverie_top_up_min | default('5') }}'
LAVERIE_TOP_UP_MAX='{{ vhost.app_laverie_top_up_max | default('150') }}'