Hello,
Elixir version = 1.13.1
Phoenix version = 1.6.6
I created a REST API in Elixir/Phoenix and everything works fine with the PostgreSQL database (hosted in Google Cloud SQL), but I have some issues when configuring the deployment env, I was following this tutorial : https://shyr.io/blog/deploy-phoenix-google-app-engine
But in my project structure I didn’t find the file config/prod.secret.exs, so I created one and compiled and now I’m having error about missing : DATABASE_URL variable
In the config/dev.exs file I was configuring the database like this :
config :test_api, TestApi.Repo,
socket_dir: "/cloudsql/CONNEXTION_NAME_CLOUD_SQL",
username: "testUser",
password: "testPassword",
database: "testDB",
pool_size: 10
But in config/runtime.exs the format required is :
For example: ecto://USER:PASS@HOST/DATABASE
How can I inject the socket dir (cloudsql) inside ?
Best regards