This commit is contained in:
zack 2024-10-22 16:51:56 -04:00
parent e2967f68b2
commit ef2a6c41b4
No known key found for this signature in database
GPG key ID: 5F873416BCF59F35
39 changed files with 2349 additions and 30 deletions

View file

@ -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",