- Add fresh app structure (auth, tenant, mail, insight, docs, panel) - Include CMS content, API routes, scripts, and config - Migrate UI components, themes, and extensions to fresh runtime
9 lines
209 B
TypeScript
9 lines
209 B
TypeScript
#!/usr/bin/env -S deno run -A --watch=static/,routes/
|
|
|
|
import dev from "$fresh/dev.ts";
|
|
import config from "./fresh.config.ts";
|
|
|
|
import "$std/dotenv/load.ts";
|
|
|
|
await dev(import.meta.url, "./main.ts", config);
|