summaryrefslogtreecommitdiffstats
path: root/options/gitignore/Rails
diff options
context:
space:
mode:
authorAntoine GIRARD <sapk@users.noreply.github.com>2018-11-03 23:06:09 +0100
committertechknowlogick <hello@techknowlogick.com>2018-11-03 18:06:09 -0400
commit57a8440db372d3b2a01d3ef12a4a560424a08657 (patch)
tree6afb467015b1e695ea54eef6d6820d92827eacd7 /options/gitignore/Rails
parent54259e2f880365d65340ade6608007b3c5eb2ed5 (diff)
downloadgitea-57a8440db372d3b2a01d3ef12a4a560424a08657.tar.gz
gitea-57a8440db372d3b2a01d3ef12a4a560424a08657.zip
Update gitignore list (#5258)
* update gitignore * Handle symlink in tar * Add some logs
Diffstat (limited to 'options/gitignore/Rails')
-rw-r--r--options/gitignore/Rails20
1 files changed, 19 insertions, 1 deletions
diff --git a/options/gitignore/Rails b/options/gitignore/Rails
index e97427608c..38ba1b5b38 100644
--- a/options/gitignore/Rails
+++ b/options/gitignore/Rails
@@ -8,12 +8,13 @@ capybara-*.html
/public/system
/coverage/
/spec/tmp
-**.orig
+*.orig
rerun.txt
pickle-email-*.html
# TODO Comment out this rule if you are OK with secrets being uploaded to the repo
config/initializers/secret_token.rb
+config/master.key
# Only include if you have production secrets in this file, which is no longer a Rails default
# config/secrets.yml
@@ -42,3 +43,20 @@ bower.json
# 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
+/storage/*
+!/storage/.keep \ No newline at end of file