Skip to content
On this page

Configuration

After installation, You will see a .env file in the root of the project. It is a normal Laravel env file which you can modify some of them.

Email

To enable Vito to send you emails, You need to configure your mail server. Modify the following on the .env file

txt
MAIL_HOST={YOUR-SMTP-HOST}
MAIL_PORT={YOUR-SMTP-PORT}
MAIL_USERNAME={YOUR-SMTP-USERNAME}
MAIL_PASSWORD={YOUR-SMTP-PASSWORD}
MAIL_ENCRYPTION=null
MAIL_FROM_ADDRESS={YOUR-SMTP-MAIL-ADDRESS}

And then run the following commands inside the root directory of the project to apply the changes

sh
php artisan config:clear
php artisan config:cache
sudo supervisorctl restart worker:*

WARNING

Currently Vito supports only SMTP as the mail driver

Made with ❤️