Build installer and management site from spec

This commit is contained in:
2026-05-07 23:22:34 +09:00
parent 0b061e63b7
commit af6e559682
33 changed files with 7125 additions and 1 deletions

9
src/shared/paths.ts Normal file
View File

@@ -0,0 +1,9 @@
import path from 'node:path'
export const projectRoot = process.cwd()
export const manifestRootPath = path.join(projectRoot, 'manifest.json')
export const accountPath = path.join(projectRoot, 'account.json')
export const manifestDir = path.join(projectRoot, 'manifest')
export const fileDir = path.join(projectRoot, 'file')
export const viewsDir = path.join(projectRoot, 'views')
export const publicDir = path.join(projectRoot, 'public')