Build Service / BuildPackage (push) Has been cancelled
Remove the embedded explorer/indexer stack, switch subspaces to prebuilt images, add certrelay and nacho as always-on services, expose Spaces and Subs APIs, and wire optional HTTP basic auth for subs and subs-prover with the correct SUBS_BASIC_AUTH_PASSWORD env var. Co-authored-by: Cursor <cursoragent@cursor.com>
29 lines
862 B
TypeScript
29 lines
862 B
TypeScript
import { actions } from '../actions'
|
|
import { restoreInit } from '../backups'
|
|
import { setDependencies } from '../dependencies'
|
|
import { setInterfaces } from '../interfaces'
|
|
import { sdk } from '../sdk'
|
|
import { versionGraph } from '../versions'
|
|
import { taskBtcAuth } from './taskBtcAuth'
|
|
import { taskSeedCertrelay } from './taskSeedCertrelay'
|
|
import { taskSeedEnableSubspaces } from './taskSeedEnableSubspaces'
|
|
import { taskSeedNacho } from './taskSeedNacho'
|
|
import { taskSeedSpacedAuth } from './taskSeedSpacedAuth'
|
|
import { taskSetPassword } from './taskSetPassword'
|
|
|
|
export const init = sdk.setupInit(
|
|
restoreInit,
|
|
versionGraph,
|
|
setInterfaces,
|
|
setDependencies,
|
|
actions,
|
|
taskBtcAuth,
|
|
taskSeedSpacedAuth,
|
|
taskSeedEnableSubspaces,
|
|
taskSeedCertrelay,
|
|
taskSeedNacho,
|
|
taskSetPassword,
|
|
)
|
|
|
|
export const uninit = sdk.setupUninit(versionGraph)
|