forked from beyond-z/canvas-lms
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy path.gitignore
109 lines (97 loc) · 2.45 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
# What goes in this file:
# * local canvas configuration (db, ymls, overrides, etc.)
# * generated/cached stuff (docs, css, js, uploads, etc.)
#
# What does NOT go in this file
# * editor-related stuff
# * random scripts only used by you
# * env-specific stuff (e.g. .DS_Store)
# * pretty much any dotfile not already covered (e.g. .rvmrc)
#
# That's what .git/info/exclude and core.excludesfile are for :)
# See https://github.com/bkeepers/dotenv#can-i-use-dotenv-in-production
# for more info about why these are the only .env files we .gitignore
/.env
.env.*.local
.bundle/
.byebug_history
/.yardoc/
/app/coffeescripts/ember/*/main.coffee
/app/coffeescripts/ember/screenreader_gradebook/templates/**/*.js
/app/views/info/styleguide.html.erb
app/stylesheets/_brandable_variables_defaults_autogenerated.scss
app/stylesheets/brandable_css_brands
/config/build.js
/config/environments/*-local.rb
/config/locales/generated/
/config/RAILS4_2
/config/WEBPACK
/coverage/
/db/schema.rb
/db/*.sqlite*
/db/*sql
/db/*.gz
/exports/
#Gemfile.lock # Commenting out and checking in Gemfile.lock to get Capistrano deploys working. It runs bundle install --deployment which requires this to be checked in.
Gemfile.lock2
Gemfile.lock3
Gemfile.lock4
Gemfile.lock4_2
/log/
mkmf.log
/node_modules
npm-debug.log
/public/assets/
/public/dist/
/public/webpack-dist/
/public/webpack-dist-optimized/
/public/doc/api/
/public/javascripts/compiled/
/public/javascripts/jst/
/public/javascripts/jsx/
/public/javascripts/translations/
/public/javascripts/**/*.gz
/public/optimized/
/public/vendor/tinymce_themes/**/*.gz
/public/stylesheets_compiled/
/public/webpack-dist/
/spec/javascripts/webpack/
/spec/javascripts/compiled/
/spec/javascripts/requirejs_config.js
/spec/javascripts/runner.html
/spec/javascripts/tests.js
/tmp/
/vendor/bundle
docker-compose.override.yml
# generated plugin stuff
/app/coffeescripts/plugins/
/app/stylesheets/plugins/
/app/views/jst/plugins/
/public/javascripts/plugins/
/public/plugins/
/spec/coffeescripts/plugins/
/spec/plugins/
# generated client app stuff
/public/javascripts/client_apps/
/script/client_secrets.json
/script/google_calendar_auth.json
# remove this once we move jquery into bower
/public/javascripts/bower/jquery/
# canvas-gems
/gems/*/coverage
/gems/*/tmp
# Local Development only files
*.dev
# ignore JetBrains IDEs files
.idea/*
# ignore tmp files from emacs
*~
# ignore tmp files from vim
*.swp
*.swo
# ignore cloud9 files
.c9/*
*.dump
*.sql
#ignore vscode
.vscode