About 1,560,000 results
Open links in new tab
  1. How would you save a simple settings/configuration file in Python?

    Oct 27, 2024 · If the configuration file doesn't exist, it appears after first call of conf.save_config_file (). If you change config.json after that, variables from file must "beat" …

  2. How to read values from config.json in Console Application

    Aug 8, 2015 · I just installed ASP.NET 5 and created a Console Application in Visual Studio. I've added a file, config.json, to the root folder of the project. It looks like this: { "Data": { "

  3. JSON Configuration in full .NET Framework Console App

    Dec 4, 2018 · 16 If you want to use config json files as in .Net Core, you can install NuGet packages Microsoft.Extensions.Configuration and Microsoft.Extensions.Configuration.Json …

  4. How can I use a json file in my configmap.yaml (Helm)?

    Nov 3, 2020 · My configmap.yaml and deployment.yaml are both kept in /chart/templates but I keep my-config.json within the base helm chart directory, outside of the templates folder.

  5. How can I use environment variables in JSON files?

    JSON does not have notion of environment variables. What you can do though is to declare your configuration file as node.js module and then you will be able to use your environment …

  6. How to properly load a configuration file as Json?

    Jun 18, 2021 · So the builder consider each element in my arrays as a unique token. I can understand this. So, how can I load my config or this Json file in a structured object? Is there a …

  7. config.json file cannot be found in Angular v20 - Stack Overflow

    May 29, 2025 · 3 So it turns out that updating to v20 of Angular charges the Case Sensitive requirement in the angular.json file. My actual config is Web.config, but in angualr.json it is …

  8. How are docker credentials saved in podman? - Stack Overflow

    Nov 5, 2023 · In docker whenever we login to a registry their credentials get saved in the config.json file right? How is this done in podman? where are the credentials saved when I …

  9. javascript - .env vs config.json - Stack Overflow

    Aug 22, 2018 · 29 .env files are generally used to store information related to the particular deployment environment, while config.json files might be used to store data particular to the …

  10. How to properly read nested configuration values from config.json …

    May 20, 2015 · I was following some examples for ASP.NET 5 and I got stumbled with how to properly read "nested" configuration values (if that is the proper term). Here is relevant portion …