From 30bd216500b77701d4dd49ea5b0e8eb5486b3e98 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Gonz=C3=A1lez?= Date: Thu, 9 Nov 2023 11:39:59 -0300 Subject: [PATCH 1/5] =?UTF-8?q?=F0=9F=99=88=20gitignore:=20Update=20docume?= =?UTF-8?q?ntation=20in=20gitignore=20and=20sort=20ignored=20folder/files?= =?UTF-8?q?=20by=20category.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 25 +++++++++++++++++++++++-- 1 file changed, 23 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 0e095b075..d16812ab0 100644 --- a/.gitignore +++ b/.gitignore @@ -1,16 +1,37 @@ +#### OS +### Mac OS +## macOS system files .DS_Store + +##### Development +#### Node +## Node.js dependencies directory node_modules/ +## Build directories dist/ src/public/app-dist/ +## Log files generated npm-debug.log yarn-error.log +## Databases *.db +## Keys & Certs config.ini cert.key cert.crt +## Server-specific package.json server-package.json +#### ESLInt +## Cache +.eslintcache +### Tmp files +tmp/ + +##### IDEs +#### JetBrains .idea/httpRequests/ + +## --------------------- + data/ data-test/ -tmp/ -.eslintcache From 9a587e8c8cb8b18d0d175c1dccbcaedcb2030906 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Gonz=C3=A1lez?= Date: Thu, 9 Nov 2023 11:46:41 -0300 Subject: [PATCH 2/5] =?UTF-8?q?=F0=9F=99=88=20gitignore:=20Add=20rules=20t?= =?UTF-8?q?o=20maintain=20empty=20folders=20and=20all=20gitignore=20files.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.gitignore b/.gitignore index d16812ab0..805337551 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,10 @@ +## Add all gitignores +!**/.gitignore +!.gitignore +## Empty folders which should be kept +!**/.keep +!.keep + #### OS ### Mac OS ## macOS system files From 38e6008aa22198c254d0d9893c15ce309f37afe7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Gonz=C3=A1lez?= Date: Thu, 9 Nov 2023 11:54:51 -0300 Subject: [PATCH 3/5] =?UTF-8?q?=F0=9F=99=88=20gitignore:=20Expand=20to=20i?= =?UTF-8?q?gnore=20JetBrains=20IDEs,=20VisualStudioCode,=20and=20Kate=20te?= =?UTF-8?q?mplates.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 20 +++++++++++++++++++- 1 file changed, 19 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 805337551..3b16c0b6b 100644 --- a/.gitignore +++ b/.gitignore @@ -36,7 +36,25 @@ tmp/ ##### IDEs #### JetBrains -.idea/httpRequests/ +## Covers JetBrains IDEs: IntelliJ, RubyMine, PhpStorm, AppCode, PyCharm, CLion, Android Studio, WebStorm and Rider +## Reference: https://intellij-support.jetbrains.com/hc/en-us/articles/206544839 +**/.idea/* +!**/.idea/.gitignore +#### VisualStudioCode / VSCode / VSCodium +.vscode/* +!.vscode/settings.json +!.vscode/tasks.json +!.vscode/launch.json +!.vscode/extensions.json +!.vscode/*.code-snippets +## Local History for Visual Studio Code +.history/ +## Built Visual Studio Code Extensions +*.vsix +#### Kate template +## Swap Files +.*.kate-swp +.swp.* ## --------------------- From 5af1c7756c52ed17d90f4bd0f9c7008894989e15 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Gonz=C3=A1lez?= Date: Thu, 9 Nov 2023 11:55:22 -0300 Subject: [PATCH 4/5] =?UTF-8?q?=F0=9F=99=88=20gitignore(.idea/.gitignore):?= =?UTF-8?q?=20Ignore=20IntelliJ=20IDE=20specific=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/.idea/.gitignore | 5 +++++ 1 file changed, 5 insertions(+) create mode 100644 src/.idea/.gitignore diff --git a/src/.idea/.gitignore b/src/.idea/.gitignore new file mode 100644 index 000000000..b58b603fe --- /dev/null +++ b/src/.idea/.gitignore @@ -0,0 +1,5 @@ +# Default ignored files +/shelf/ +/workspace.xml +# Editor-based HTTP Client requests +/httpRequests/ From c8d6f20c3be78994cabbb909b23be81f23ee0c7e Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Luis=20Gonz=C3=A1lez?= Date: Thu, 9 Nov 2023 11:59:04 -0300 Subject: [PATCH 5/5] =?UTF-8?q?=F0=9F=99=88=20gitignore(.gitignore):=20Inc?= =?UTF-8?q?lude=20macOS=20and=20Linux=20system=20files?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .gitignore | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) diff --git a/.gitignore b/.gitignore index 3b16c0b6b..3d64c9cd9 100644 --- a/.gitignore +++ b/.gitignore @@ -7,8 +7,39 @@ #### OS ### Mac OS +## General ## macOS system files .DS_Store +.AppleDouble +.LSOverride +## Icon must end with two \r +Icon +## Thumbnails +._* +## Files that might appear in the root of a volume +.DocumentRevisions-V100 +.fseventsd +.Spotlight-V100 +.TemporaryItems +.Trashes +.VolumeIcon.icns +.com.apple.timemachine.donotpresent +## Directories potentially created on remote AFP share +.AppleDB +.AppleDesktop +Network Trash Folder +Temporary Items +.apdisk +### Linux template +*~ +## temporary files which can be created if a process still has a handle open of a deleted file +.fuse_hidden* +## KDE directory preferences +.directory +## Linux trash folder which might appear on any partition or disk +.Trash-* +## .nfs files are created when an open file is removed but is still being accessed +.nfs* ##### Development #### Node