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.
If you are using the Docker version, you need to update the environment variables of your container.
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:*
For docker version you will need to restart the restart/re-create the container.
WARNING
Currently Vito supports only SMTP as the mail driver