-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
.gitignore
65 lines (60 loc) · 1.12 KB
/
.gitignore
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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
# Comment out the following line, if you wish to store your SQLite database in Git
/var/data/*
###> bolt/core ###
config/bolt/*_local.yaml
config/extensions/*_local.yaml
/config/packages/local
/config/routes/local
/public/files/*
!/public/files/.gitkeep
!/public/files/index.html
/public/thumbs/*
!/public/thumbs/.gitkeep
!/public/thumbs/index.html
###< bolt/core ###
### NPM and frontend assets building cruft
node_modules/
npm-debug.log
yarn-error.log
build_assets.sh
### File-system cruft and temporary files
__*
._*
.*.swp
.swp
*.lock
!composer.lock
!symfony.lock
*lock.json
.buildpath
### Platfom-specific files
.DS_Store
thumbs.db
Vagrantfile
.vagrant*
.idea
.php-version
.vscode/*
*.code-workspace
appveyor.yml
###> Docker ###
docker-compose.override.yml
docker-compose.override.yaml
###< Docker ###
###> symfony/framework-bundle ###
/.env.local
/.env.local.php
/.env.*.local
/config/secrets/prod/prod.decrypt.private.php
/public/assets/
/public/bundles/
/var/cache/*
!/var/cache/.gitkeep
/var/log/*
!/var/log/.gitkeep
!/var/data/.gitkeep
/var/sessions/*
!/var/sessions/.gitkeep
/vendor/
.web-server-pid
###< symfony/framework-bundle ###