Initial app
This commit is contained in:
86
.gitignore
vendored
86
.gitignore
vendored
@@ -1,16 +1,14 @@
|
||||
# ---> Rails
|
||||
*.rbc
|
||||
capybara-*.html
|
||||
.rspec
|
||||
/db/*.sqlite3
|
||||
/db/*.sqlite3-journal
|
||||
/db/*.sqlite3-[0-9]*
|
||||
/public/system
|
||||
/coverage/
|
||||
/spec/tmp
|
||||
*.orig
|
||||
rerun.txt
|
||||
pickle-email-*.html
|
||||
# See https://help.github.com/articles/ignoring-files for more about ignoring files.
|
||||
#
|
||||
# Temporary files generated by your text editor or operating system
|
||||
# belong in git's global ignore instead:
|
||||
# `$XDG_CONFIG_HOME/git/ignore` or `~/.config/git/ignore`
|
||||
|
||||
# Ignore bundler config.
|
||||
/.bundle
|
||||
|
||||
# Ignore all environment files.
|
||||
/.env*
|
||||
|
||||
# Ignore all logfiles and tempfiles.
|
||||
/log/*
|
||||
@@ -18,54 +16,22 @@ pickle-email-*.html
|
||||
!/log/.keep
|
||||
!/tmp/.keep
|
||||
|
||||
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
|
||||
config/initializers/secret_token.rb
|
||||
config/master.key
|
||||
# Ignore pidfiles, but keep the directory.
|
||||
/tmp/pids/*
|
||||
!/tmp/pids/
|
||||
!/tmp/pids/.keep
|
||||
|
||||
# Only include if you have production secrets in this file, which is no longer a Rails default
|
||||
# config/secrets.yml
|
||||
|
||||
# dotenv, dotenv-rails
|
||||
# TODO Comment out these rules if environment variables can be committed
|
||||
.env
|
||||
.env*.local
|
||||
|
||||
## Environment normalization:
|
||||
/.bundle
|
||||
/vendor/bundle
|
||||
|
||||
# these should all be checked in to normalize the environment:
|
||||
# Gemfile.lock, .ruby-version, .ruby-gemset
|
||||
|
||||
# unless supporting rvm < 1.11.0 or doing something fancy, ignore this:
|
||||
.rvmrc
|
||||
|
||||
# if using bower-rails ignore default bower_components path bower.json files
|
||||
/vendor/assets/bower_components
|
||||
*.bowerrc
|
||||
bower.json
|
||||
|
||||
# Ignore pow environment settings
|
||||
.powenv
|
||||
|
||||
# Ignore Byebug command history file.
|
||||
.byebug_history
|
||||
|
||||
# Ignore node_modules
|
||||
node_modules/
|
||||
|
||||
# Ignore precompiled javascript packs
|
||||
/public/packs
|
||||
/public/packs-test
|
||||
/public/assets
|
||||
|
||||
# Ignore yarn files
|
||||
/yarn-error.log
|
||||
yarn-debug.log*
|
||||
.yarn-integrity
|
||||
|
||||
# Ignore uploaded files in development
|
||||
# Ignore storage (uploaded files in development and any SQLite databases).
|
||||
/storage/*
|
||||
!/storage/.keep
|
||||
/public/uploads
|
||||
/tmp/storage/*
|
||||
!/tmp/storage/
|
||||
!/tmp/storage/.keep
|
||||
|
||||
/public/assets
|
||||
|
||||
# Ignore master key for decrypting credentials and more.
|
||||
/config/master.key
|
||||
|
||||
/app/assets/builds/*
|
||||
!/app/assets/builds/.keep
|
||||
|
Reference in New Issue
Block a user