environment-variables Questions

2

Solved

I'd like to set some specific options in idea.vmoptions and idea.properties for IntelliJ IDEA 14, but I don't have access to those files in C:\Program Files\... (yes, that's Windows, don't troll ;)...

2

I have private dependency from GitLab in my Flutter mobile app project. It is specified in pubspec.yaml with git repository link and I can successfully run pub get if I use ssh for it (I have gener...

3

Solved

I have this PowerShell script, that reads some environment variables and outputs them: Write-Host "name: $(tenantName) version: $(versionRelease) url: $(urlApplication)" Those variables are defi...
Seiler asked 16/6, 2020 at 13:0

9

DB_CONNECTION=mysql DB_HOST=127.0.0.1 DB_PORT=3306 DB_DATABASE= DB_USERNAME=root DB_PASSWORD= this is my configuration for laravel 5.4 but php artisan migrate is not working and have error ...
Brachiopod asked 21/1, 2018 at 11:57

2

Solved

There is a strange behavior of lobstr::obj_addr caused by its vectorization over lists, when the list itself doesn't change the address. I just started Advanced R by Wickham (2ed) and reached the 2...
Brambling asked 16/9 at 16:19

4

I added the key into heroku config var, but I'm still getting the error. Is this the correct way? I ignored secrets.yml as I read from other sources that its not a good idea to push this to the pu...

2

Solved

I would like to be able to know that my code is run under rspec or not. Is this possible? The reason is that I am loading some error loggers that would be cluttered with deliberate errors (expect{...
Keane asked 24/7, 2014 at 11:32

2

I'm currently working on an Electron app which uses a third party software. At some point I'm checking if that software is installed on the user's computer (it has to be in PATH), and if it's not t...
Aretta asked 10/7, 2018 at 12:18

7

How I can set the new environment variables and their value permanently in Linux I used export to set the env variables. But the problem is its session specific. If I open new session the va...
Mariannemariano asked 4/8, 2017 at 9:22

3

I have a Next.Js application that I will deploy with docker. I am passing my environment variables in docker file and docker-compose.yaml. Next version: 12.1.6 Dockerfile # Install dependencies onl...
Krein asked 7/8, 2022 at 19:57

3

The problem I am facing is with ENVied package for flutter. I am trying to save my api keys in environment variables. I followed these steps. Installed these three packages $ flutter pub add envi...
Carbonate asked 24/11, 2023 at 0:34

2

Is there a way to refer to the current directory in a .env file? Trying to point the location of a config file from userprofile, to the current path. For example, CONFIG_FILE=${USERPROFILE}\.conf...
Summerly asked 26/3, 2019 at 13:33

3

Solved

Quick question how to get the .env conf file into the server. I have three settings file in my project base, development, production. I think testing and staging is an overkill It is encouraged to...
Gasolier asked 29/6, 2019 at 13:24

5

Solved

I am using the following code to get and set environment variables. public static string Get( string name, bool ExpandVariables=true ) { if ( ExpandVariables ) { return System.Environment.GetEnv...
Globetrotter asked 9/6, 2015 at 7:59

8

I want to use my .env variables inside cypress.json file. As an example of usage: { "env": { "HOST": `${process.env.HOST}` } } What I want is this: When I type Cypress.env('...
Wernher asked 13/12, 2021 at 11:11

7

Solved

I have a .env file like this one: TESTCASE_GROUP_SIZE=25 . . . And I want to get its value (read it) into a .ps1 script. How can I do it?
Neuman asked 14/5, 2022 at 0:46

20

Dealing with some significant frustration trying to set up my environment variables just to run Flutter. in my path, I've tried many suggestions to try setting up my Path route so that the Flutter ...
Mountain asked 30/9, 2020 at 5:33

6

I have a site I've built with Next 13 (experimental app directory) and have integrated authentication in my site with Clerk. Everything works well on my local environment. When deployed to Netlify,...
Fictitious asked 14/5, 2023 at 15:53

8

Solved

I'm trying to make a discord bot, and when I try to load a .env with load_dotenv() it doesn't work because it says Traceback (most recent call last): File "/home/fanjin/Documents/Python Proje...
Filide asked 8/11, 2020 at 1:49

5

Solved

I'm using .env in a Python project, with python-dotenv, but it seems like VSCode automatically loads the environment variables from the .env. Unfortunately, VSCode does not seem to update the envir...

5

I am trying to use python-dotenv, but the environment variables I'm trying to pass keep coming up as 'None'. I have two files in the folder: .env & settings.py I have the following in my .env ...
Doelling asked 15/5, 2018 at 16:50

7

I was thinking of adding something like this to my setup.bash script. ln -s /mnt/c/Users/Ryan/Downloads $HOME/Downloads But obviously that isn't always an accurate path so I was hoping to be abl...
Upright asked 5/5, 2017 at 1:3

4

Solved

I want to execute a python script to set some environment variables in GitHub actions. I want to use those environment variables later in my GitHub actions steps. My python script looks like: new_v...

0

I have ReactJs app with .env file like this: REACT_APP_SERVER_URL="URL1" Then I using Dockerfile to build to Image: # Fetching the latest node image on apline linux FROM node:22 AS builde...

5

Solved

I want to use an API key in my flutter app, and have read that the envied package is a good tool to keep the API key hidden. The issue is I can't get this working. This is what I've done: Installe...
Expert asked 8/7, 2023 at 4:44

© 2022 - 2024 — McMap. All rights reserved.