From 34d0057b3e81c960d0a2e824cb5ed359020e8c47 Mon Sep 17 00:00:00 2001 From: Nassim Tabchiche Date: Mon, 12 Feb 2024 12:28:56 +0100 Subject: [PATCH] Update gitignore --- .gitignore | 13 +------------ backend/.gitignore | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 12 deletions(-) create mode 100644 backend/.gitignore diff --git a/.gitignore b/.gitignore index 4a32c0e90..4f26d58d4 100644 --- a/.gitignore +++ b/.gitignore @@ -1,19 +1,8 @@ -!__init__.py -*.pyc -__pycache__ *.DS_Store *~$* -staticfiles/* -*.mo .env -dump.json -node_modules/ +**/node_modules/ .vscode *.sqlite3 -backend/staticfiles/ -backend/venv/ temp/ -backend/db/attachments/ -backend/db/django_secret_key -backend/db/pg_password.txt ./db/ diff --git a/backend/.gitignore b/backend/.gitignore new file mode 100644 index 000000000..ba9f5fc72 --- /dev/null +++ b/backend/.gitignore @@ -0,0 +1,18 @@ +!__init__.py +*.pyc +__pycache__ +*.DS_Store +*~$* +staticfiles/* +*.mo +.env +.vscode +*.sqlite3 +staticfiles/ +venv/ +temp/ +db/attachments/ +db/django_secret_key +db/pg_password.txt +./db/ +.coverage