090ac601a5
Included the `mzur/kirby-uniform` plugin in `composer.json` for enhanced form handling functionality. Updated `.gitignore` to exclude `/site/plugins/` for better project structure and version control.
68 lines
803 B
Plaintext
68 lines
803 B
Plaintext
# System files
|
|
# ------------
|
|
|
|
Icon
|
|
.DS_Store
|
|
|
|
# Temporary files
|
|
# ---------------
|
|
|
|
/media/*
|
|
!/media/index.html
|
|
|
|
# Lock files
|
|
# ---------------
|
|
|
|
.lock
|
|
|
|
# Editors
|
|
# (sensitive workspace files)
|
|
# ---------------------------
|
|
*.sublime-workspace
|
|
/.vscode
|
|
/.idea
|
|
|
|
# -------------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
|
|
|
|
# Kirby
|
|
# ---------------
|
|
|
|
/kirby
|
|
/media
|
|
/vendor
|
|
/site/plugins/
|
|
|
|
# Node
|
|
# ---------------
|
|
/node_modules
|
|
|
|
# CSS files
|
|
# ---------------
|
|
assets/css/styles.css
|
|
|