Skip to content

Installation

Timot Tarjani edited this page Jun 24, 2020 · 11 revisions

Browser

After downloading and copying the files to the server, navigate to the app root folder and run composer install. Then head to your domain. HorizontCMS can recognize if not installed yet, and redirects you to the installer. Follow the instructions, add the required credentials and you're done.

Console

with artisan.

  1. Download the CMS
  2. Navigate to the app root folder and run composer install
    • For development purposes run npm install and npm run dev
  3. Run php artisan horizontcms:install
  4. Enter the required database and administrator informations.
  5. You're finished.

Manually (advanced)

You can manually install the CMS with Laravel's database migrate and seed. Run the following commands:

  1. composer install
  2. php artisan key:generate
  3. php artisan migrate
  4. php artisan db:seed

After these steps you have to insert an admin user into the user table in databse.

Clone this wiki locally