# Configure :ex_aws | |
config :ex_aws, | |
access_key_id: "ACCESS_KEY", | |
secret_access_key: "ACCESS_SECRET", | |
s3: [ | |
scheme: "https://", | |
host: "YOUR-BUCKET.s3.amazonaws.com", | |
region: "eu-west-2" | |
] | |
# Configure your database | |
config :imagey, Imagey.Repo, | |
adapter: Ecto.Adapters.Postgres, | |
username: "imagey_dev", | |
password: "db_password", | |
database: "imagey_dev", | |
hostname: "localhost", | |
pool_size: 10 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment