Answers for "dot env space separated variales"

0

dot env space separated variales

Verify your .env file. You need to check for the following:
1. Any extra or non-needed spaces
2. If you have any strings with spaces, make sure to surround them in quotes

# Example:

variable=123 Test

# Needs to be

variable="123 Test"
Posted by: Guest on September-28-2021

Browse Popular Code Answers by Language