We're working on deploying a Java project to Heroku that uses MongoDB. According to the Heroku docs, the DB connection parameters are read from an environment variable, MONGOHQ_URL
. When I run the project in Netbeans on my laptop, how do I set this variable?
I tried adding it as a VM option with -DMONGOHQ_URL=...
in Run -> Set Project Configuration -> Customize -> Run and as well in Actions -> Run project and Run file via main(), but to no avail. When the program reads it with System.getvar
it's not set.