Manual
Whenever available, it is recommended to install from the installation wizard. If the installation wizard has problems, you can try to install from the terminal.
TIP
To perform the manual installation, you need access to the server by SSH.
In Windows, we recommend using the Putty client: https://www.putty.org/
Manual installation guide
- Install composer dependencies
sh
composer install --optimize-autoloader --no-dev- Copy the .env.example file to
.env
sh
cp .env.example .env- Generate application key
sh
php artisan key:generate- Configure the app base url in the
.envfile
APP_URL=https://example.com # App base url- Configure the database connection details in the
.envfile
DB_HOST=127.0.0.1 # Database host
DB_PORT=3306 # Database port
DB_DATABASE=snowflake # Database name
DB_USERNAME=root # Database user
DB_PASSWORD=******** # Database user password- Run database migrations
sh
php artisan migrate --force- Create default users
sh
php artisan install:users