a fancy canvas mcp server!
0
fork

Configure Feed

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

at main 10 lines 298 B view raw
1#!/usr/bin/env bun 2// Generate a secure encryption key for the .env file 3 4import { randomBytes } from "crypto"; 5 6const key = randomBytes(32).toString("base64"); 7 8console.log("\n🔐 Generated Encryption Key:"); 9console.log("\nENCRYPTION_KEY=" + key); 10console.log("\nAdd this to your .env file\n");