update
This commit is contained in:
parent
e2967f68b2
commit
ef2a6c41b4
39 changed files with 2349 additions and 30 deletions
|
|
@ -53,6 +53,22 @@ config :tailwind,
|
|||
cd: Path.expand("../assets", __DIR__)
|
||||
]
|
||||
|
||||
config :ex_aws,
|
||||
access_key_id: System.get_env("MINIO_ACCESS_KEY", "PvV9r38q0lA8CmT5bqpU"),
|
||||
secret_access_key:
|
||||
System.get_env("MINIO_SECRET_KEY", "wrEhRQ4ughUPw06lKxRlo9Bv4ciBa7i7BDJsRP0o"),
|
||||
json_codec: Jason
|
||||
|
||||
config :ex_aws, :s3,
|
||||
scheme: "https://",
|
||||
host: "s3.zoeys.computer",
|
||||
port: 443,
|
||||
region: "us-east-1"
|
||||
|
||||
config :nanoid,
|
||||
size: 21,
|
||||
alphabet: "_-0123456789abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ"
|
||||
|
||||
# Configures Elixir's Logger
|
||||
config :logger, :console,
|
||||
format: "$time $metadata[$level] $message\n",
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue