Installation on local machine
BeeDMS is a web based document management system built on laravel 5.4 so it’s installation is similar to laravel installation. You need to have knowledge on how to install software in laravel. To install it in local computer follow following steps,
For Windows,
- At first install wamp or xampp.
- Then check php version. Your computer php version must be PHP >= 5.6.4.
- After that install composer . For installation click here .
- One can also install git bash terminal from here instead of cmd.
- Now your system is ready to install BeeDMS. Download zip file form here and copy it in folder htdocs for xampp and www folder for wamp and unzip it.
- Then open phpmyadmin and create a database with name as defined in project’s .env file ” DB_DATABASE=dms “.
- Open git bash terminal on project folder or navigate to project folder on cmd and run command ” composer update” .
- Then run command ” php artisan migrate ” to create tables in database.
- Also run command ” php artisan db:seed ” to fill default data.
- And finally run project by command ” php artisan serve”.
For Linux,
- At first install lamp or xampp for linux.
- Then check php version. Your computer php version must be PHP >= 5.6.4.
- After that install composer . For installation click here.
- Now your system is ready to install BeeDMS. Download zip file form here and copy it in folder htdocs for xammp and www folder for lamp and unzip it.
- Then open phpmyadmin and create a database with name as defined in project’s .env file ” DB_DATABASE=dms “.
- Open terminal in project folder and run command ” composer update “.
- Then run command ” php artisan migrate ” to create tables in database.
- Also run command ” php artisan db:seed ” to fill default data.
- And finally run project by command ” php artisan serve”.
For Mac,
- At first install xampp for Mac.
- Then check php version. Your computer php version must be PHP >= 5.6.4.
- After that install composer . For installation click here .
- Now your system is ready to install BeeDMS. Download zip file form here and copy it in folder htdocs for xampp and unzip it.
- Then open phpmyadmin and create a database with name as defined in project’s .env file ” DB_DATABASE=dms “.
- Open terminal in project folder and run command ” composer update “.
- Then run command ” php artisan migrate ” to create tables in database.
- Also run command ” php artisan db:seed ” to fill default data.
- And finally run project by command ” php artisan serve”.