Framework-agnostic session management for AT Protocol applications using Iron Session encryption
0
fork

Configure Feed

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

Add .gitignore

+28
+28
.gitignore
··· 1 + # Dependencies 2 + node_modules/ 3 + 4 + # Build outputs 5 + dist/ 6 + *.js.map 7 + 8 + # IDE 9 + .idea/ 10 + .vscode/ 11 + *.swp 12 + *.swo 13 + *~ 14 + 15 + # OS 16 + .DS_Store 17 + Thumbs.db 18 + 19 + # Deno 20 + .deno/ 21 + 22 + # Environment 23 + .env 24 + .env.local 25 + .env.*.local 26 + 27 + # Coverage 28 + coverage/