This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

stigmergic / src / container.ts
486 B 22 lines
1import { Container } from "@cloudflare/containers"; 2 3export class StrataContainer extends Container { 4 defaultPort = 8080; 5 sleepAfter = "5m"; 6 7 // Env vars passed to the container process 8 env: Record<string, string> = { 9 VAULT_PATH: "/data/vault", 10 CARRY_PATH: "/data/carry", 11 CARRY_REMOTE: "", 12 CARRY_BRANCH: "main", 13 }; 14 15 async onStart() { 16 console.log("[strata-container] started"); 17 } 18 19 async onStop() { 20 console.log("[strata-container] stopped"); 21 } 22}