diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..27debcf --- /dev/null +++ b/.gitignore @@ -0,0 +1,39 @@ +# --- pre-release artifacts --- +dist/ +scripts/ +*.ps1 +*.zip +*.xpi + +# --- python bytecode --- +__pycache__/ +*.py[cod] +*$py.class + +# --- virtual environments --- +node_modules/ +.venv/ +venv/ +env/ + +# --- environment files --- +.env +.env.* +*.local + +# --- emacs --- +*~ +\#*\# +.\#* +*.elc + +# --- project private data --- +/private/ + +# --- django --- +db.sqlite3 +staticfiles/ +media/ + +# --- misc --- +.DS_Store \ No newline at end of file