code.gitea.io/gitea@v1.21.7/options/gitignore/Rails (about) 1 *.rbc 2 capybara-*.html 3 .rspec 4 /db/*.sqlite3 5 /db/*.sqlite3-journal 6 /db/*.sqlite3-[0-9]* 7 /public/system 8 /coverage/ 9 /spec/tmp 10 *.orig 11 rerun.txt 12 pickle-email-*.html 13 14 # Ignore all logfiles and tempfiles. 15 /log/* 16 /tmp/* 17 !/log/.keep 18 !/tmp/.keep 19 20 # TODO Comment out this rule if you are OK with secrets being uploaded to the repo 21 config/initializers/secret_token.rb 22 config/master.key 23 24 # Only include if you have production secrets in this file, which is no longer a Rails default 25 # config/secrets.yml 26 27 # dotenv, dotenv-rails 28 # TODO Comment out these rules if environment variables can be committed 29 .env 30 .env*.local 31 32 ## Environment normalization: 33 /.bundle 34 /vendor/bundle 35 36 # these should all be checked in to normalize the environment: 37 # Gemfile.lock, .ruby-version, .ruby-gemset 38 39 # unless supporting rvm < 1.11.0 or doing something fancy, ignore this: 40 .rvmrc 41 42 # if using bower-rails ignore default bower_components path bower.json files 43 /vendor/assets/bower_components 44 *.bowerrc 45 bower.json 46 47 # Ignore pow environment settings 48 .powenv 49 50 # Ignore Byebug command history file. 51 .byebug_history 52 53 # Ignore node_modules 54 node_modules/ 55 56 # Ignore precompiled javascript packs 57 /public/packs 58 /public/packs-test 59 /public/assets 60 61 # Ignore yarn files 62 /yarn-error.log 63 yarn-debug.log* 64 .yarn-integrity 65 66 # Ignore uploaded files in development 67 /storage/* 68 !/storage/.keep 69 /public/uploads