Additional simulation components

Other components of the platform can also be changed via the environment variables .env file. See the table below for a list and description of these components.

How to change these components

These components can be changed in the .env file found in the project folder. It looks like the following when opened with a text file editor:

To change or define a variable, replace the value after the equals sign of the corresponding variable with your desired value.

  • For example:

    • If you would like to change the site name to “FootballForums”, then you will need to change the line:

      • SITE_NAME=eatsnap.love to SITE_NAME=FootballForums

When changing variable names, there should be no spaces between the variable name, equals sign, and variable value. The following will not work because of spacing between the equals sign.

  • SITE_NAME= FootballForums

  • SITE_NAME = FootballForums

If your variable value has a space, enclose the value with quotes. For example:

SITE_NAME="Football Forums"

Last updated