Last active
August 23, 2019 13:39
-
-
Save zakgreene/f75d69881f37e8a243f2e33e01d35a16 to your computer and use it in GitHub Desktop.
General gitignore for Kirby CMS v2-v3
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# --------------- | |
# gitignore for Kirby CMS sites | |
# | |
# works with Kirby v2 or v3 | |
# --------------- | |
# System files | |
# ------------ | |
Icon | |
.DS_Store | |
*.icloud | |
.sass-cache/* | |
# Kirby CMS files | |
# --------------- | |
/panel/* | |
/kirby/* | |
/thumbs/* | |
/content/* | |
/assets/avatars/* | |
# Temporary files | |
# --------------- | |
/media/* | |
!/media/index.html | |
# -------------SECURITY------------- | |
# NEVER publish these files via Git! | |
# -------------SECURITY------------- | |
# Cache Files | |
# --------------- | |
/site/cache/* | |
!/site/cache/index.html | |
# Accounts | |
# --------------- | |
/site/accounts/* | |
!/site/accounts/index.html | |
# Sessions | |
# --------------- | |
/site/sessions/* | |
!/site/sessions/index.html | |
# License | |
# --------------- | |
/site/config/.license |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment