Installation
Install via Docker
Vito provides a single docker image that you can install it easily!
Docker Command
docker run -v vito_storage:/var/www/html/storage \
-e APP_KEY=your_32_character_app_key \
-e NAME=admin_name \
-e EMAIL=admin_email \
-e PASSWORD=admin_password \
-p 80:80 vitodeploy/vito:latestAPP_KEY
is Laravel's encryption key
and should be a 32-character string.Make sure you modify the env variables when running the command.
Docker Compose
version: '3'
services:
vito:
image: vitodeploy/vito:latest
ports:
- '8000:80'
environment:
APP_KEY: 'your-32-character-app-key'
NAME: 'vito'
EMAIL: '[email protected]'
PASSWORD: 'password'
volumes:
- 'vito-storage:/var/www/html/storage'
volumes:
vito-storage:
driver: localEnvironment Variables
APP_KEY: A 32-character string app key used for encryption within the app.APP_URL: The URL of your Vito instance, by default is http://localhostNAME: Your account's nameEMAIL: Your account's email for loginPASSWORD: Your account's password for login (You can change it after login)Beta Releases on Docker
2.x tag.Install on VPS
Vito can be installed on a fresh Ubuntu server with only one single command.
Requirements
- Ubuntu 22.04 LTS or Higher
- 1 GB Memory
- 1 CPU
- 80 and 443 ports should be open
Other Ubuntu versions have not been tested, and we don't recommend them.
You cannot use Vito to install applications into the same server as Vito. Otherwise, It might crash your Vito instance.
Installation Process
root user of your server via SSH and run the following command:bash <(curl -Ls https://raw.githubusercontent.com/vitodeploy/vito/2.x/scripts/install.sh)root user!The installation will ask you for these inputs:
This is the admin email that you will use to log into VitoDeploy.
ADMIN_EMAILPassword
This is the admin user's password.
ADMIN_PASSWORDReady
The installation can take several minutes, and after it is done, It will print an output like bellow:
🎉 Congratulations!
✅ SSH User: SSH-USER
✅ SSH Password: SSH-PASSWORD
✅ Admin Email: ADMIN-EMAIL
✅ Admin Password: ADMIN-PASSWORDAt this step, You can ask VitoDeploy by visiting the IP address of your server on a browser.
Make sure that your server is accessible via port 80 and 443.
Beta Releases on VPS
BETA=1 as an env variable.BETA=1 bash <(curl -Ls https://raw.githubusercontent.com/vitodeploy/vito/2.x/scripts/install.sh)Install Locally
To contribute to VitoDeploy and run it locally we have Laravel Sail ready!
VitoDeploy uses OpenSSL keys to connect to your servers so you can manage them, Every Vito instance should have its own public and private key to do so. With the following command, you can generate a key pair.
If you're using Mac or Linux, You can run it on your terminal. If you're using Windows, You can run it on the app container after booting up the app via Laravel Sail.
openssl genpkey -algorithm RSA -out /PATH_TO_VITO/storage/ssh-private.pem
chmod 600 /PATH_TO_VITO/storage/ssh-private.pem
ssh-keygen -y -f /PATH_TO_VITO/storage/ssh-private.pem > /PATH_TO_VITO/storage/ssh-public.keyLaravel Sail
To run the app locally via Laravel Sail clone the repository into your local machine and then run the following commands:
Set the envs
cp .env.sail .env.env file and thencomposer installAnd then boot up with Sail
./vendor/bin/sail up -dGenerate App Key
./vendor/bin/sail artisan key:generatedatabase.sqlite in the storage folder.Run the migrations
./vendor/bin/sail artisan migrateCreate a new user
./vendor/bin/sail artisan user:create {name} {email} {password}.env file.Migrating
storage folder with the contents of the old one. For this to work you will also need to use the same Laravel APP_KEY
in your .env file. You can subsequently generate a new one using php artisan key:generate.