feat: GTSIT 사이트 구축

This commit is contained in:
박성필
2026-08-10 21:19:10 +09:00
commit dbb35d35c4
87 changed files with 48246 additions and 0 deletions

29
config/app.php Normal file
View File

@@ -0,0 +1,29 @@
<?php
declare(strict_types=1);
return [
'name' => '(주)지티에스정보통신',
'legal_name' => '(주)지티에스정보통신',
'base_url' => 'https://gtsit.co.kr',
'base_path' => rtrim((string) (getenv('GTSIT_BASE_PATH') ?: ''), '/'),
'app_root' => (string) (getenv('GTSIT_APP_ROOT') ?: dirname(__DIR__)),
'public_root' => (string) (getenv('GTSIT_PUBLIC_ROOT') ?: dirname(__DIR__) . '/public'),
'noindex' => filter_var(getenv('GTSIT_NOINDEX') ?: false, FILTER_VALIDATE_BOOL),
'timezone' => 'Asia/Seoul',
'session_name' => 'gtsit_session',
'naver_maps' => [
'client_id' => (string) (getenv('NAVER_MAPS_CLIENT_ID') ?: '0xuekem2qn'),
'query' => '서울특별시 송파구 정의로7길 13',
'latitude' => 37.48524,
'longitude' => 127.11478,
],
'contact' => [
'phone' => '1833-4917',
'phone_sub' => '1833-4918',
'fax' => '02-6442-0670',
'email' => 'gts0201@naver.com',
'address' => '서울시 송파구 정의로7길 13, B동 오피스 1020호',
'business_hours' => '평일 09:0018:00',
],
];