forked from OSC/ondemand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
.gitignore
123 lines (98 loc) · 2.25 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
# See http://help.github.com/ignore-files/ for more about ignoring files.
#
# If you find yourself ignoring temporary files generated by your text editor
# or operating system, you probably want to add a global ignore instead:
# git config --global core.excludesfile '~/.gitignore_global'
# Ignore bundler config.
/vendor/bundle
/.bundle
/apps/*/.bundle
/apps/*/public/packs
/apps/*/public/packs-test
/apps/*/vendor/bundle/
/apps/*/app/assets/builds/
!/apps/*/app/assets/builds/.keep
/*/.bundle
# files used for deployment should not be versioned
/apps/*/.htaccess
/apps/*/public/.htaccess
# Ignore the default SQLite database.
/apps/*/db/*.sqlite3
/apps/*/db/*.sqlite3-journal
# Ignore all logfiles and tempfiles.
/apps/*/log/*.log
/apps/*/tmp/*
!/apps/*/tmp/.keep
# data to store simulations and file uploads for development
/apps/*/data
/apps/myjobs/templates
# awesim-rails uses separately versioned wiki repositories
# do not include those in the app repo
/apps/myjobs/docs
# files used for deployment should not be versioned
/apps/*/public/assets/
/apps/*/public/.htaccess
/apps/*/.env.production.local
/apps/*/.env.local*
/apps/*/.env.overload
apps/dashboard/.ruby-version
/apps/activejobs/config/initializers/filter.rb
/apps/dashboard/config/initializers/ood.rb
/apps/bc_desktop/local
# Ignore staged app
/apps/dashboard/vendor/my_app
/apps/*/config/clusters.d
/apps/*/clusters.d
# SSHFS
._*
.DS_Store
# Don't include the node modules
/apps/*/node_modules
# Build artifacts
/apps/*/.built
/packaging/*.tar.gz
/build
lib-cov
*.seed
*.log
*.csv
*.dat
*.out
*.pid
*.gz
npm-debug.log
/apps/shell/pids
/apps/shell/results
######################################################################
#
# Ignore Vim files
# https://github.com/github/gitignore/blob/master/Global/Vim.gitignore
#
######################################################################
# Swap
[._]*.s[a-v][a-z]
[._]*.sw[a-p]
[._]s[a-v][a-z]
[._]sw[a-p]
# Session
Session.vim
# Temporary
.netrwhist
*~
# Auto-generated tag files
tags
# Ignore SELinux files
/packaging/*.pp
/packaging/*.if
/packaging/tmp
# Ignore files downloaded for testing
/tests/*.zip
# Ignore temporary files
/tmp
# Ignore distribution files
/dist
# Ignore copies of .rubocop.yml
.rubocop.yml
!/.rubocop.yml
# Ignore .vscode
.vscode