mirror of
https://github.com/codeninjasllc/codecombat.git
synced 2024-11-23 23:58:02 -05:00
91 lines
1 KiB
Text
91 lines
1 KiB
Text
|
# Since we're not a node module, we just use this to tell Nodejitsu what to deploy.
|
||
|
|
||
|
# Don't include GitHub stuff or local scripts
|
||
|
README.md
|
||
|
generators
|
||
|
to_browserify.js
|
||
|
config.coffee
|
||
|
bin
|
||
|
karma.conf.js
|
||
|
.gitignore
|
||
|
|
||
|
# Don't include Brunch input
|
||
|
test
|
||
|
vendor
|
||
|
|
||
|
# Only include some of app
|
||
|
app/assets
|
||
|
app/styles
|
||
|
app/templates
|
||
|
app/views
|
||
|
#!app/models # keep
|
||
|
#!app/validators # keep
|
||
|
#!app/lib/world # keep
|
||
|
#!app/lib/surface # keep
|
||
|
|
||
|
### Stuff from .gitignore ###
|
||
|
|
||
|
# # Python
|
||
|
*.pyc
|
||
|
*.pyo
|
||
|
|
||
|
# OS X
|
||
|
.DS_Store
|
||
|
Icon?
|
||
|
._*
|
||
|
.Spotlight-V100
|
||
|
.Trashes
|
||
|
|
||
|
# Windows
|
||
|
Thumbs.db
|
||
|
|
||
|
# Emacs
|
||
|
*.*~
|
||
|
*.#
|
||
|
.#*
|
||
|
*#
|
||
|
|
||
|
# Vim
|
||
|
.*.sw[a-z]
|
||
|
*.un~i
|
||
|
|
||
|
# Sublime
|
||
|
*.sublime-project
|
||
|
*.sublime-workspace
|
||
|
|
||
|
# NPM packages folder.
|
||
|
node_modules/
|
||
|
|
||
|
# Some other random stuff
|
||
|
always-ignore extensions
|
||
|
*.diff
|
||
|
*.err
|
||
|
*.orig
|
||
|
*.log
|
||
|
*.rej
|
||
|
*.vi
|
||
|
*.sass-cache
|
||
|
|
||
|
# OS or Editor folders
|
||
|
.cache
|
||
|
.project
|
||
|
.settings
|
||
|
.tmproj
|
||
|
.idea
|
||
|
nbproject
|
||
|
|
||
|
# Brunch folder for temporary files.
|
||
|
tmp/
|
||
|
|
||
|
### Brunch output
|
||
|
##public/
|
||
|
## Do include Brunch output.
|
||
|
|
||
|
# Redis?
|
||
|
dump.rdb
|
||
|
|
||
|
# Mongo
|
||
|
mongo/
|
||
|
|
||
|
# Karma coverage
|
||
|
coverage/
|