diff options
Diffstat (limited to '.gitignore')
-rw-r--r-- | .gitignore | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..7cf1bf7 --- /dev/null +++ b/.gitignore @@ -0,0 +1,35 @@ +# build output +dist/ +# generated types +.astro/ + +# dependencies +node_modules/ + +# logs +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* + + +# environment variables +.env +.env.production + +# macOS-specific files +.DS_Store + +# jetbrains setting folder +.idea/ + +/coverage/ +/report.junit.xml +/docs/ + +# I guess if this was a template repo I woudn't want to share the blog posts +# and the "trusted" keys. +# +# /public/blog/* +# !/public/blog/TEMPLATE +# /public/keys/ |