curl --request POST \
--url http://localhost:3000/api/system/environment/local \
--header 'Content-Type: application/json' \
--data '{
"content": {}
}'
{
"success": true,
"message": "Local env updated"
}
Update local environment variables in .env file
curl --request POST \
--url http://localhost:3000/api/system/environment/local \
--header 'Content-Type: application/json' \
--data '{
"content": {}
}'
{
"success": true,
"message": "Local env updated"
}
Environment variables updated
The response is of type object
.
Was this page helpful?