add secrets.yml.default
This commit is contained in:
parent
2cbf1cad7f
commit
8e427ea8f2
2 changed files with 18 additions and 3 deletions
9
.gitignore
vendored
9
.gitignore
vendored
|
@ -4,11 +4,15 @@
|
||||||
# or operating system, you probably want to add a global ignore instead:
|
# or operating system, you probably want to add a global ignore instead:
|
||||||
# git config --global core.excludesfile ~/.gitignore_global
|
# git config --global core.excludesfile ~/.gitignore_global
|
||||||
|
|
||||||
|
#assety stuff
|
||||||
realtime/node_modules
|
realtime/node_modules
|
||||||
config/database.yml
|
|
||||||
.env
|
|
||||||
public/assets
|
public/assets
|
||||||
|
|
||||||
|
#secrets
|
||||||
|
config/database.yml
|
||||||
|
config/secrets.yml
|
||||||
|
.env
|
||||||
|
|
||||||
# Ignore bundler config
|
# Ignore bundler config
|
||||||
.bundle
|
.bundle
|
||||||
|
|
||||||
|
@ -20,5 +24,4 @@ log/*.log
|
||||||
tmp
|
tmp
|
||||||
|
|
||||||
.DS_Store
|
.DS_Store
|
||||||
|
|
||||||
.vagrant
|
.vagrant
|
||||||
|
|
12
config/secrets.yml.default
Normal file
12
config/secrets.yml.default
Normal file
|
@ -0,0 +1,12 @@
|
||||||
|
defaults: &defaults
|
||||||
|
missing_map_png_url: '/assets/missing-map.png'
|
||||||
|
user_png_url: '/assets/user.png'
|
||||||
|
|
||||||
|
development:
|
||||||
|
<<: *defaults
|
||||||
|
|
||||||
|
test:
|
||||||
|
<<: *defaults
|
||||||
|
|
||||||
|
production:
|
||||||
|
<<: *defaults
|
Loading…
Reference in a new issue