Skip to content

Install

Casper Bottelet edited this page Jun 16, 2020 · 7 revisions

Installation

For server requirements, and a general how-to referee to Laravel's original documentation at: https://laravel.com/docs/7.x/installation

Basic How to

  • Insert project into empty folder/ git clone https://github.com/Bottelet/Flarepoint-crm.git
  • Create an empty database
  • Copy the .env.example to .env
  • Configure your database config in either config/database.php or in your .env file
  • Run the following commands
    composer install
    php artisan migrate --seed
    php artisan key:generate
  • login in with these credentials
    Mail: admin@admin.com Password: admin123 (Can be changed in the dashboard)
  • DONE

The above is required that you have PHP, MySQL, etc. installed locally on your computer somehow maybe, for other options look at Laravel's recommendations: Homestread Valet

Or if you prefer Docker take a look at the Readme for setting the CRM up with Docker

You can now very easily insert dummy data into the CRM. For more info look at Insertion of dummy data

Clone this wiki locally