adding support for a site content repo under priv/content/, and for dev.secret.exs
This commit is contained in:
parent
e3f7522cf1
commit
db98330446
3 changed files with 9 additions and 0 deletions
6
.gitignore
vendored
6
.gitignore
vendored
|
@ -33,9 +33,15 @@ npm-debug.log
|
||||||
# this depending on your deployment strategy.
|
# this depending on your deployment strategy.
|
||||||
/priv/static/
|
/priv/static/
|
||||||
|
|
||||||
|
# config secrets
|
||||||
|
/config/*.secret.exs
|
||||||
|
|
||||||
# for vscode elixir_ls extension files
|
# for vscode elixir_ls extension files
|
||||||
/.elixir_ls
|
/.elixir_ls
|
||||||
|
|
||||||
|
# blog content repo folder
|
||||||
|
/priv/content/*
|
||||||
|
!/priv/content/.gitkeep
|
||||||
|
|
||||||
# dev
|
# dev
|
||||||
TODO.md
|
TODO.md
|
||||||
|
|
|
@ -66,3 +66,6 @@ config :phoenix, :stacktrace_depth, 20
|
||||||
|
|
||||||
# Initialize plugs at runtime for faster development compilation
|
# Initialize plugs at runtime for faster development compilation
|
||||||
config :phoenix, :plug_init_mode, :runtime
|
config :phoenix, :plug_init_mode, :runtime
|
||||||
|
|
||||||
|
# Finally import the config/dev.secret.exs which loads secret config
|
||||||
|
import_config "dev.secret.exs"
|
||||||
|
|
0
priv/content/.gitkeep
Normal file
0
priv/content/.gitkeep
Normal file
Loading…
Reference in a new issue