Added missing double quotes for some config

variables on .env file

Change-Id: I37446306a31764af14d1339c3f3f568eccd46d90
This commit is contained in:
smarcet 2019-05-13 20:54:22 -03:00
parent 0a45e9bfe4
commit 8341bbfd32
1 changed files with 3 additions and 3 deletions

View File

@ -41,12 +41,12 @@ SESSION_COOKIE_DOMAIN=<%= @session_cookie_domain %>
SESSION_COOKIE_SECURE=<%= @session_cookie_secure %>
SESSION_COOKIE_HTTP_ONLY=<%= @session_cookie_http_only %>
MAIL_DRIVER=<%= @email_driver %>
MAIL_HOST=<%= @email_smtp_server %>
MAIL_DRIVER="<%= @email_driver %>"
MAIL_HOST="<%= @email_smtp_server %>"
MAIL_PORT=<%= @email_smtp_server_port %>
MAIL_USERNAME="<%= @email_smtp_server_user %>"
MAIL_PASSWORD="<%= @email_smtp_server_password %>"
SENDGRID_API_KEY=<%= @email_send_grid_api_key %>
SENDGRID_API_KEY="<%= @email_send_grid_api_key %>"
CORS_ALLOWED_HEADERS="origin, content-type, accept, authorization, x-requested-with"
CORS_ALLOWED_METHODS="GET, POST, OPTIONS, PUT, DELETE"