move storage and api to apps, create base analyzer

This commit is contained in:
2024-05-10 06:08:25 +02:00
parent 987339f517
commit 2e56c7105b
42 changed files with 403 additions and 48 deletions
+17
View File
@@ -0,0 +1,17 @@
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")
config :ex_aws,
access_key_id: "3zwMWl4RPCs8CHzhKmIX",
secret_access_key: "79B6LmryjJElkrIiHgDcfIxSpmvrLdVy75MyAJC2",
s3: [
scheme: "http://",
host: "localhost",
port: "9000"
]