- Dockerfile: multi-stage build (Node frontend + Python backend) - StartOS manifest, interfaces, backups, version graph - start.sh: auto-generates session secret, creates first approver on boot - Backend serves built frontend as SPA in production - Single data volume for SQLite DB, platform backups cover it
8 lines
167 B
TypeScript
8 lines
167 B
TypeScript
import { VersionGraph } from '@start9labs/start-sdk'
|
|
import { current, other } from './versions'
|
|
|
|
export const versionGraph = VersionGraph.of({
|
|
current,
|
|
other,
|
|
})
|