xgeek116
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
Trending in Questions
Hey guys,
I’ve got a huge CSV ( around 10 GB ) that needs to be processed hourly
Do you guys have any suggestions what is the best prac...
New
I’m working on a project that simulates the bumbl example in the programming phoenix book. It acts almost like an email client. We have a...
New
Hello!
Could someone please give me a help/sample code, how to delete a file from s3 using waffle/waffle_ecto from Phoenix app.
I creat...
New
I’m seeing that a list inside a Kino.DataTable will be interpreted as a charlist, even if the Kino.configure() is set to charlists: :as_l...
New
So my question is quite simple and i have found no conclusive answer on forum, google or AI.
Should we use :erlang.float for Integer to ...
New
Hi, I’ve just set up an application with ash_authentication. There is only magic link strategy for now, so there is no confirmation add o...
New
If a change or preparation module uses Ash.Changeset.get_argument/2 or Ash.Query.get_argument/2 (or any of the other get_argument functio...
New
Other Trending Topics
I am happy to introduce the very α version of the new programming language compiled to BEAM.
Welcome Cure.
It has literally three kille...
New
Hobbes is a low-level distributed database for the Elixir programming language.
Hobbes provides a simple, safe, and scalable storage lay...
New
Hi there! We created Gust: A task orchestrator inspired by Airflow.
For those who have never heard about Aiflow, it’s a Python-based wor...
New
Beam Bots (or just BB for short) is a framework for building fault-tolerant robotics applications in Elixir using familiar OTP patterns. ...
New
Hello everyone. After busy few months I am happy to announce v0.1.0 of Emerge & Solve.
They are GUI (Emerge) and State management (S...
New
Corex is an accessible, unstyled UI component library for Phoenix that integrates Zag.js state machines using Vanilla JavaScript and Live...
New
Categories:
Sub Categories:
Forums
Popular Tags
- #ecto
- #liveview
- #troubleshooting
- #learning-elixir
- #deployment
- #library
- #erlang
- #testing
- #genserver
- #mix
- #absinthe
- #remote-other
- #otp
- #plug
- #how-to-question
- #macros
- #postgres
- #elixirconf
- #channels
- #exunit
- #discussion
- #code-sync
- #podcasts
- #javascript
- #onsite
- #dialyzer
- #docker
- #authentication
- #umbrella
- #full-time-contract
- #podcasts-by-brainlid
- #ecto-query
- #blog-post
- #elixirconf-us
- #elixir-ls
- #ai
- #phoenix_html
- #iex
- #graphql
- #genstage
- #websockets
- #supervisor
- #advent-of-code
- #distillery
- #processes
- #api
- #forms
- #hex
- #security
- #metaprogramming











Showing Posts 1 to 4- Show Best Posts
- Show All (oldest first)
- Show All (newest first)
xgeek116
Hello,
I tried to set the DATABASE_URL env variable like :
DATABASE_URL: “ecto://user:password@/database?host=/cloudsql/DATABASE_CONNECTION_NAME”
But I get the following error :
benwilson512
This is the format that is provided by default in
runtime.exs, but this is not required. You can pass all of the same options that are passed toconfig/dev.exs, you probably just want to substitute the username and password options withSystem.get_envcalls.mstibbard
I trust you’ve solved this issue by now (or given up!!).
For anyone else that finds this, I’ve written up the complete steps to deploy to Google Cloud Run + Cloud SQL here: https://www.stibbard.io/elixir-phoenix-deploy-google-cloud-run-and-cloud-sql
The answer to your specific question:
config/prod.secret.exswas moved intoconfig/runtime.exsmix phx.new project_nameis in the form ofecto://USER:PASS@HOST/DATABASEhowever Cloud SQL expects asocketconnection, not a domain (e.g.,HOST) so you need to update yourconfig/runtime.exs. Refer to Ecto.Adapters.Postgres — Ecto SQL v3.14.0 – the one you want is:socket. An example updated config could be like below, which includes moving the values into environment variables/secrets.mstibbard
I can’t update my post above but there’s an even easier way – using postgres environment variables (e.g.,
PGHOST,PGUSER, etc) which is what:postgrexdefaults to when your code does not specify database connection details. I’ve updated my write-up accordingly: https://www.stibbard.io/elixir-phoenix-deploy-google-cloud-run-and-cloud-sql