-
-
Notifications
You must be signed in to change notification settings - Fork 153
Expand file tree
/
Copy path.gitignore
More file actions
42 lines (34 loc) · 863 Bytes
/
.gitignore
File metadata and controls
42 lines (34 loc) · 863 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
# NEVER commit your own config with your user-credentials
/adm_my_files/config.php
# Don't commit your own stuff
/adm_my_files/*
!/adm_my_files/ecard_templates/
!/adm_my_files/mail_templates/
!/adm_my_files/config_example.php
!/adm_my_files/.htaccess
!/adm_my_files/index.html
# Only allow commit of official plugins
/plugins/*
!/plugins/birthday/
!/plugins/calendar/
!/plugins/login-form/
!/plugins/random-photo/
!/plugins/announcement-list/
!/plugins/event-list/
!/plugins/latest-documents-files/
!/plugins/who-is-online/
# Only allow commit of official themes
/themes/*
!/themes/simple/
# Don't commit the external libs from vendor folder
/vendor
# Some special OS files that should not commited
/*.phar
.DS_Store
php-cs-fixer
# Project-specific IDE settings are local for each developer
/.vscode/
# For custom configuration
/.php_cs
/.idea
custom_*.*