Add guarded WordPress pull to local workflow

This commit is contained in:
reaper
2026-08-15 07:00:28 -05:00
parent 22dd00c4c0
commit 8b23e5f590
8 changed files with 276 additions and 0 deletions
+23
View File
@@ -83,6 +83,29 @@ export interface AuroraSiteCredentials {
email: string
}
export interface AuroraRemoteSiteProfile {
siteUrl: string
wordpressUsername: string
applicationPassword?: string
sshHost: string
sshPort: number
sshUsername: string
privateKeyPath: string
remotePath: string
configured?: boolean
}
export interface AuroraRemoteSiteStatus {
connected: boolean
platform: 'wordpress'
siteName: string
siteUrl: string
wordpressVersion: string
phpVersion: string
databaseVersion: string
connectorVersion: string
}
export interface AuroraStackOptions {
phpVersion: string
nodeVersion: string