📌  相关文章
📜  点 env 空格分隔的变量 - 无论代码示例

📅  最后修改于: 2022-03-11 14:56:27.254000             🧑  作者: Mango

代码示例1
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"