also set devprod

This commit is contained in:
zack 2024-10-22 17:18:06 -04:00
parent 4042cc6153
commit 0632ee97dc
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
2 changed files with 9 additions and 1 deletions

View file

@ -50,7 +50,11 @@ config :zoeyscomputer, ZoeyscomputerWeb.Endpoint,
#
# If desired, both `http:` and `https:` keys can be
# configured to run both http and https servers on
# different ports.
# different ports
config :nanoid,
size: 7,
alphabet: "_-0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
# Watch static and templates for browser reloading.
config :zoeyscomputer, ZoeyscomputerWeb.Endpoint,

View file

@ -17,5 +17,9 @@ config :swoosh, local: false
# Do not print debug messages in production
config :logger, level: :info
config :nanoid,
size: 7,
alphabet: "_-0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
# Runtime production configuration, including reading
# of environment variables, is done on config/runtime.exs.