Skip to content

Install

Casper Bottelet edited this page Sep 3, 2021 · 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/DaybydayCRM.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
    npm install 
    npm run dev
  • 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:

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

Next Steps

You can now easily insert dummy data into the CRM, or start using it freely Insertion of dummy data

Clone this wiki locally