🤐 Permissions
Secure by default
How would you exclude the "/secrets" directory from being written to on your server?
Basic Security
command line
deno run --allow-read app.ts
Allow All
command line
deno run -A app.ts
Granular Security
command line
deno run --allow-read --deny-read=./diary.txt app.ts