Difference between revisions of ".env"

From PKC
Jump to navigation Jump to search
m (1 revision imported)
Line 1: Line 1:
The '''.env'''<ref>IBM, .env file, [https://www.ibm.com/docs/en/aix/7.2?topic=files-env-file], last accessed: April 26, 2021</ref> is a file dedicated to specify configuration information for a software project. In the context of [[PKC]], we will try to converge all configurable parameters to be stored in this file. Other than your secretive information, such as password and private keys to your related systems, this file will be the only file you will need to change to specify customized parameters for your own system.
The '''.env'''<ref>IBM, .env file, [https://www.ibm.com/docs/en/aix/7.2?topic=files-env-file], last accessed: April 26, 2021</ref> is a file dedicated to specify configuration information for a software project. In the context of [[PKC]], we will try to converge all configurable parameters to be stored in this file. Other than your secretive information, such as password and private keys to your related systems, this file will be the only file you will need to change to specify customized parameters for your own system.
=Sample .env=
<syntaxhighlight lang="Bash">
PORT_NUMBER=9352
HOST_NAME=localhost
</syntaxhighlight>


=References=
=References=

Revision as of 09:39, 27 August 2021

The .env[1] is a file dedicated to specify configuration information for a software project. In the context of PKC, we will try to converge all configurable parameters to be stored in this file. Other than your secretive information, such as password and private keys to your related systems, this file will be the only file you will need to change to specify customized parameters for your own system.

Sample .env

PORT_NUMBER=9352
HOST_NAME=localhost

References

  1. IBM, .env file, [1], last accessed: April 26, 2021