-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy path.gitignore
More file actions
executable file
·41 lines (33 loc) · 1.21 KB
/
.gitignore
File metadata and controls
executable file
·41 lines (33 loc) · 1.21 KB
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
# The config file is environment (local, dev, tst, prd, ...) different and
# contains sensitive data (passwords).
# This file should never be in a repository!
/config/config.sh
# The backups folder is used to store local backups whan one of the scripts is
# performing destructive operations. No need for it in the repository.
/backup
# The build folder is used when building the whole project to be packaged or
# uploaded. No need to be stored in the repository.
/build
# The reason of this project is to avoid core and contrib code to be stored in
# the project repository. Do not store what can be build using make files.
/web
# Theme assets are generated dynamically.
project/profiles/capacity4more/themes/c4m/kapablo/css
project/profiles/capacity4more/themes/c4m/kapablo/js
project/profiles/capacity4more/themes/c4m/kapablo/images
# Ignore dev dependencies.
node_modules
bower_components
.sass-cache
# Avoid IDE files being committed.
.idea
*.sublime-project
*.sublime-workspace
project/profiles/capacity4more/behat/vendor
project/profiles/capacity4more/behat/bin
behat.local.yml
project/profiles/capacity4more/behat/features/dump
# Avoid system files being committed.
.DS_Store
# Avoid Vagrant files being committed.
.vagrant