environment-variables Questions

8

Solved

I am new to Gradle. Currently I have this task: task fooTask { doLast { exec { environment 'FOO_KEY', '1234567' // Load from file here! commandLine 'fooScript.sh' } } } fooScript.sh #!/b...
Churchwell asked 24/5, 2018 at 12:9

2

I have deployed my react web application in hostinger. I made a build of my react web application and uploaded it in public_html of hostinger and my site works fine. But since I am using firebase I...

8

Solved

I am trying to start an NGINX server within a docker container configured through docker-compose. The catch is, however, that I would like to substitute an environment variable inside of the http s...
Chalkstone asked 18/6, 2019 at 12:50

11

Solved

What is the best way to read environment variables in SpringBoot? In Java I did it using: String foo = System.getenv("bar"); Is it possible to do it using @Value annotation?
Zennas asked 28/6, 2017 at 12:59

7

I have a file which connects to Contentful using my specific space and accessToken. Recently, I decided to hide the keys into an .env file using the dotenv package. This is what my file looks like ...
Littleton asked 2/1, 2021 at 3:46

13

Solved

I'm experiencing an issue where Visual Studio Code in Windows 10 is not able to detect globally installed NPM packages within the Integrated Terminal. For example, if the windows command prompt I ...
Starve asked 27/7, 2017 at 15:14

2

Solved

I have a React App that works beautifully over HTTPS using a .env.production file containing: HTTPS=true SSL_CRT_FILE=/etc/ssl/certs/mycert.crt SSL_KEY_FILE=/etc/ssl/private/mykey.key the packa...
Serigraph asked 4/6, 2020 at 6:37

7

Solved

I have the following scenario: I have an env variable $SOME_IP defined and want to use it in a nginx block. Referring to the nginx documentation I use the env directive in the nginx.conf file like ...
Morena asked 18/2, 2014 at 22:5

3

I want to create an Elastic Beanstalk using CloudFormation template. I want to define an environment variable ENV_VAR_1 and set it's value to value of template parameter var1. But don't want ENV_VA...

8

Solved

I want to work with environment variables. Unfortunately, I am an inexperienced developer and decided very late to implement such a solution in my project. I'm trying to inject environment variabl...
Oppugn asked 3/11, 2019 at 21:7

8

Solved

I'm working on few projects and some of them are using different JDK. Switching between JDK versions is not comfortable. So I was wondering if there is any easy way to change it? I found 2 ways, w...
Chromolithography asked 18/11, 2014 at 11:22

6

Solved

I just installed pyspark 2.2.0 using conda (using python v3.6 on windows 7 64bit, java v1.8) $conda install pyspark It downloaded and seemed to install correctly with no errors. Now when I run p...
Conspiracy asked 20/10, 2017 at 12:58

5

I've tried a few implementations which none have been successful. First Attempt Using eval in package.json script "fetch:data": "eval $(cat .env) ts-node -O '{\"module\":\&...

19

Solved

I've tried all of the solutions out there but none seem to work for me. I just want to store some values in a .env file within my Vue app but simply trying to log process.env returns an empty objec...

7

I got this error firebaseapperror: failed to parse private key: error: invalid pem formatted message when I pushed my nodejs app to heroku. I had my environment variables all set like this # .env f...
Centenarian asked 8/12, 2021 at 20:10

7

Solved

What is the best way to use a .env in a Makefile, i.e. loading that file and exporting all variables for subshells in make? It would be great if the proposed solution would work with make only, e....
Busboy asked 19/6, 2017 at 10:32

12

I have a config file which contains some ENV_VARIABLE styled variables. This is my file. It might contain $EXAMPLES of text. Now I want that variable replaced with a value which is saved in my a...
Hoi asked 29/1, 2016 at 7:9

18

I am using an .env file to hold environment variables for the server. This works if I run the server with foreman start. But it doesn't work with nodemon. I would like to use nodemon instead beca...

5

Solved

The top-level CMakeLists.txt contains: include(CTest) add_subdirectory(lib) add_subdirectory(demo) add_subdirectory(test) lib/CMakeLists.txt is essentially: add_library(MyLib <sources>) ...
Ratiocination asked 17/12, 2019 at 15:1

8

Solved

I´ve been through all the docs from vite, react.js and dev blogs, but I'm not getting it to work I have a .env file which contains the following VITE_API_KEY = XXX inside my firebase.js file I'm ...
Onondaga asked 27/1, 2022 at 18:29

5

Noob question, my apologies. I'm wondering if anyone knows the recommended deployment flow for NextJS self-hosted (e.g. docker or kubernetes). I'm doing a typical build once, ship per environment w...
Coulomb asked 31/12, 2020 at 12:46

1

My job has a build step Build - Execute shell, I only put these two command in: echo $WORKSPACE echo $PWD And the output really confused me: + echo /home/jenkins/workspace/tradefed/test_deploym...
Privy asked 15/3, 2019 at 8:3

6

Solved

Can someone give me an example of where a batch script would act differently with or without delayed expansion? Are there any situations where you would NOT want to use delayed expansion? Thanks.

14

I am using windows server 2008 os. i download composer setup.exe and install to my PC . when I try composer install . I getting an error: 'composer' is not recognized as an internal or external co...
Calculate asked 27/9, 2016 at 12:23

4

Solved

Edit: This looks like a duplicate of this Unresolved Question. Do I mark this as answered, or delete? I am using InjectManifest from workbox-webpack-plugin inside a Vue CLI 3 app. The custom servi...

© 2022 - 2024 — McMap. All rights reserved.