-
Notifications
You must be signed in to change notification settings - Fork 11
/
.gitignore
72 lines (51 loc) · 1.42 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
# ShinyCMS ~ https://shinycms.org
#
# Copyright 2009-2021 Denny de la Haye ~ https://denny.me
#
# ShinyCMS is free software; you can redistribute it and/or modify it under the terms of the GPL (version 2 or later)
# Configure git to ignore certain files
## Files that may contain secrets - API keys, passwords, and other credentials
# Rails secrets files
/config/master.key
/config/credentials.yml.enc
# The .env*.local files are for ENV setting you don't want to git commit - e.g. API keys
/.env.development.local
/.env.test.local
/.env.production.local
/.env.local
# .env is also excluded here, as some people store credentials there
/.env
## Gemfile.lock files in plugins
/plugins/Shiny*/Gemfile.lock
## Files generated by ShinyCMS in normal operation
# Atom feeds
/public/feeds/atom/*.xml
# Sitemaps
/public/*sitemap.xml*
# MkDocs output (the docs website)
/site/
## Files generated by the test suite
# Results and metadata for tests and test coverage
/spec/examples.txt
/coverage/
# Theme files used during test runs
# TODO: figure out reliable deletion after parallel test runs
/themes/TEST
## Files generated by Rails
# Log files
/log/*.log
# ActiveStorage local disk storage
/storage/
# Sprockets
/public/assets
# Cache and other gank
/tmp/
## Files generated by the JavaScript ecosystem
# Node / NPM / Yarn
/node_modules/
/yarn-debug.log*
/yarn-error.log*
/.yarn-integrity
# Webpack / Webpacker
/public/packs
/public/packs-test