How to use this box with Vagrant:
Vagrant.configure("2") do |config|
config.vm.box = "uvdesk/uvdesk"
config.vm.box_version = "1.1"
end
vagrant init uvdesk/uvdesk \
--box-version 1.1
vagrant up
This version was created about 1 year ago.
open source helpdesk is a web-based helpdesk and customer support ticketing system. It is designed to streamline customer support operations and facilitate efficient communication between businesses and their customers. UVdesk offers a range of features and tools to manage and resolve customer inquiries, support tickets, and provide timely assistance.
Ticket Management: UVdesk provides a centralized platform for managing customer support tickets.
Email Integration: UVdesk integrates with popular email services, allowing you to convert customer emails into support tickets.
Knowledge Base: UVdesk enables the creation and management of a knowledge base, which serves as a self-help resource for customers.
Automation and Workflow: UVdesk offers automation features to streamline support processes.
Customer Portal: UVdesk provides a dedicated customer portal where customers can log in, view and manage their support tickets, access their conversation history.
Collaboration and Agent Productivity: UVdesk allows support agents to collaborate on resolving customer issues by assigning tickets, adding internal notes, and sharing information within the platform.
Create your vagrant directory
mkdir DirectoryName
Switch into the project directory and initialize vagrant.
cd DirectoryName
vagrant init uvdesk/uvdesk \
--box-version 1.1
We can Edit the vagrant configuration file using vim editor.
vim Vagrantfile
We can assign a local IP to the vagrant to access it in local network in vagrantfile just by doing uncomment and editing the below line.
config.vm.network "public_network", ip: "local network ip"
We can add default vagrant ssh credentials given below in Vagrantfile under config.vm.box-
config.ssh.username = "vagrant"
config.ssh.password = "vagrant"
We can create virtual machine now using the command given below-
vagrant up
Default MySql login credentials of MySql server installed inside the vagrant are given below-
username = root
password = root
If you are going to install UvDesk via GUI then you need to change the APP_ENV key from prod to dev in the file given below-
vim /home/vagrant/www/html/uvdesk/.env
APP_ENV=dev
Now we just need to save the file and we can easilly install and setup Uvdesk.
If you have any issues or queries, contact us at support@uvdesk.com
Thank you.