feat: add MySQL database support

This commit is contained in:
reaper
2026-08-14 13:47:25 -05:00
parent 635f06b488
commit 55715d9fa4
6 changed files with 20 additions and 13 deletions
+2 -2
View File
@@ -88,7 +88,7 @@ export interface AuroraStackOptions {
phpVersion: string
nodeVersion: string
webServer: 'nginx' | 'apache'
database: 'mariadb' | 'postgres'
database: 'mariadb' | 'mysql' | 'postgres'
databaseVersion: string
adminer: boolean
redis: boolean
@@ -143,7 +143,7 @@ export interface AuroraModuleManifest {
settings: AuroraModuleSetting[]
aurora: { core: string; moduleApi: string }
creation?: {
databases?: Array<'mariadb' | 'postgres'>
databases?: Array<'mariadb' | 'mysql' | 'postgres'>
setup?: AuroraModuleSetting[]
intro?: { title: string; description: string; icon?: string }
}