Hmm, do you have your environment variables set up properly, with the correct syntax? Your application.yml should look like this:
application.yml
SOME_KEY: "some_value_for_api_key" SOME_KEY: "some_value_for_api_key" SOME_KEY: "some_value_for_api_key" SOME_KEY: "some_value_for_api_key"
Make sure you're using double quotes for the values, and that your keys have no quotes. There should also only be a colon and space in between the two.
Thanks that worked
We're a place where coders share, stay up-to-date and grow their careers.
We strive for transparency and don't collect excess data.
re: dev.to open source help/discussion thread (v0) VIEW POST
TOP OF THREAD FULL DISCUSSIONHmm, do you have your environment variables set up properly, with the correct syntax? Your
application.yml
should look like this:Make sure you're using double quotes for the values, and that your keys have no quotes. There should also only be a colon and space in between the two.
Thanks that worked