From 6d5f266f6cf1e9738b7e68b3b95b6969781de645 Mon Sep 17 00:00:00 2001 From: Helder Burato Berto Date: Wed, 21 Apr 2021 09:23:03 +0100 Subject: [PATCH 1/2] Add Strapi CMS .gitignore --- Strapi.gitignore | 135 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 135 insertions(+) create mode 100644 Strapi.gitignore diff --git a/Strapi.gitignore b/Strapi.gitignore new file mode 100644 index 00000000..70e65425 --- /dev/null +++ b/Strapi.gitignore @@ -0,0 +1,135 @@ +############################ +# OS X +############################ + +.DS_Store +.AppleDouble +.LSOverride +Icon +.Spotlight-V100 +.Trashes +._* + + +############################ +# Linux +############################ + +*~ + + +############################ +# Windows +############################ + +Thumbs.db +ehthumbs.db +Desktop.ini +$RECYCLE.BIN/ +*.cab +*.msi +*.msm +*.msp + + +############################ +# Packages +############################ + +*.7z +*.csv +*.dat +*.dmg +*.gz +*.iso +*.jar +*.rar +*.tar +*.zip +*.com +*.class +*.dll +*.exe +*.o +*.seed +*.so +*.swo +*.swp +*.swn +*.swm +*.out +*.pid + + +############################ +# Logs and databases +############################ + +.tmp +*.log +*.sql +*.sqlite + + +############################ +# Misc. +############################ + +*# +.idea +nbproject +.vscode/ + + +############################ +# Node.js +############################ + +lib-cov +lcov.info +pids +logs +results +build +node_modules +.node_history +package-lock.json +**/package-lock.json +!docs/package-lock.json +*.heapsnapshot + + +############################ +# Tests +############################ + +testApp +coverage +cypress/screenshots +cypress/videos + + +############################ +# Documentation +############################ + +dist + +############################ +# Builds +############################ + +packages/strapi-generate-new/files/public/ + +############################ +# Example app +############################ + +.dev +# *.cache + +############################ +# Visual Studio Code +############################ + +front-workspace.code-workspace From dffd1a074475512b9565167046d1cf751ed65434 Mon Sep 17 00:00:00 2001 From: Brian Douglas Date: Fri, 7 May 2021 10:57:12 -0700 Subject: [PATCH 2/2] Rename Strapi.gitignore to community/Strapi.gitignore --- Strapi.gitignore => community/Strapi.gitignore | 0 1 file changed, 0 insertions(+), 0 deletions(-) rename Strapi.gitignore => community/Strapi.gitignore (100%) diff --git a/Strapi.gitignore b/community/Strapi.gitignore similarity index 100% rename from Strapi.gitignore rename to community/Strapi.gitignore