diff --git a/.gitignore b/.gitignore index e42ef9a..02cbff9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,13 +1,34 @@ -*.pyc -*.org -*.ps1 -.env -#* -.#* +# --- python bytecode --- __pycache__/ +*.py[cod] +*$py.class + +# --- virtual environments --- +.venv/ venv/ +env/ + +# --- environment files --- +.env +.env.* +*.local + +# --- emacs --- +*~ +\#*\# +.\#* +*.elc + +# --- project private data --- +/private/ archive/ -config/ downloads/ data.json - \ No newline at end of file + +# --- django --- +db.sqlite3 +staticfiles/ +media/ + +# --- misc --- +.DS_Store \ No newline at end of file