Add ex_aws

This commit is contained in:
2024-05-01 13:59:10 +02:00
parent 7ebcab23ea
commit ff0c05a7ed
7 changed files with 36 additions and 1 deletions
+2
View File
@@ -2,3 +2,5 @@ import Config
config :scrapper,
riot_api_key: System.get_env("RIOT_API_KEY")
import_config "#{config_env()}.exs"
+3
View File
@@ -0,0 +1,3 @@
import Config
import_config("libs/ex_aws_dev.exs")
+8
View File
@@ -0,0 +1,8 @@
import Config
config :ex_aws, :s3,
scheme: "http://",
host: System.get_env("EX_AWS_HOST"),
port: System.get_env("EX_AWS_PORT"),
access_key_id: System.get_env("EX_AWS_ACCESS_KEY"),
secret_access_key: System.get_env("EX_AWS_SECRET_KEY")