feat: 앱 버전 관리 페이지 구현

- AppVersion 모델, Service, Controller
- 버전 등록 폼 (APK 업로드, 강제 업데이트 설정)
- 버전 목록 테이블 (활성 토글, 다운로드 수, 삭제)
- /app-versions 라우트 추가
- app_releases 스토리지 디스크 추가

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2026-01-30 19:53:09 +09:00
parent 275ad1d5ab
commit 78e67eb928
6 changed files with 360 additions and 0 deletions

View File

@@ -66,6 +66,14 @@
'report' => false,
],
'app_releases' => [
'driver' => 'local',
'root' => env('APP_RELEASES_PATH', '/var/www/shared-storage/releases'),
'visibility' => 'private',
'throw' => false,
'report' => false,
],
's3' => [
'driver' => 's3',
'key' => env('AWS_ACCESS_KEY_ID'),