Skip to content

Commit ef31fee

Browse files
author
vitalie
committed
Update .gitignore and .dockerignore
1 parent f0494b6 commit ef31fee

File tree

3 files changed

+74
-6
lines changed

3 files changed

+74
-6
lines changed

.dockerignore

Lines changed: 38 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,41 @@
1+
# Ignore docker files
2+
.dockerignore
3+
Dockerfile*
4+
docker-compose*
5+
6+
# Ignore .git
7+
/.git
8+
.gitignore
9+
10+
# Ignore bundler config.
111
/.bundle
12+
vendor/bundle
13+
214
/.env
3-
/.git
415
.travis.yml
5-
#IDEs folders
6-
.idea
16+
17+
# Ignore all logfiles.
18+
/log/*
19+
!/log/.keep
20+
21+
# Ignore Rubocop files
22+
.rubocop-*
23+
24+
# Ignore coverage reports
25+
/coverage/*
26+
27+
# Ignore editor specific configs
28+
/.idea
29+
/.vscode
30+
.project
31+
.classpath
32+
.c9/
33+
*.launch
34+
.settings/
35+
*.sublime-workspace
36+
.generators
37+
.rakeTasks
38+
39+
# System Files
40+
.DS_Store
41+
Thumbs.db

.gitignore

Lines changed: 36 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,37 @@
1-
.Gemfile*
1+
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
2+
#
3+
# If you find yourself ignoring temporary files generated by your text editor
4+
# or operating system, you probably want to add a global ignore instead:
5+
# git config --global core.excludesfile '~/.gitignore_global'
6+
7+
# Ignore bundler config.
8+
/.bundle
9+
vendor/bundle
10+
211
config/travis.yml
3-
log
4-
.history
12+
13+
# Ignore all logfiles.
14+
/log/*
15+
!/log/.keep
16+
17+
# Ignore Rubocop files
18+
.rubocop-*
19+
20+
# Ignore coverage reports
21+
/coverage/*
22+
23+
# Ignore editor specific configs
24+
/.idea
25+
/.vscode
26+
.project
27+
.classpath
28+
.c9/
29+
*.launch
30+
.settings/
31+
*.sublime-workspace
32+
.generators
33+
.rakeTasks
34+
35+
# System Files
36+
.DS_Store
37+
Thumbs.db

log/.keep

Whitespace-only changes.

0 commit comments

Comments
 (0)