rroycedev/rroyce-assetmgr is a Laravel package for the laravel framework..
It currently has 0 GitHub stars and 0 downloads on Packagist.
Install it with composer require rroycedev/rroyce-assetmgr.
Discover more Laravel packages by rroycedev
or browse all Laravel packages to compare alternatives.
Last updated
An asset manager website using laravel package adldap2/adldap2-laravel
To get Webpack to compiler for vuejs-devtools you need to add the following to the end of the file ./node_modules/laravel-mix/setup/webpack.config.js:
module.exports.node = { fs: 'empty', child_process: 'empty' } externals: { child_process: 'child_process' }
Clone the repository https://github.com/rroycedev/rroyce-assetmgr to your project root directory
Copy the .env.example file to .env
Edit the .env file and change the database settings to your settings:
DB_CONNECTION=mysql
DB_HOST=127.0.0.1
DB_PORT=3306
DB_DATABASE=homestead
DB_USERNAME=homestead
DB_PASSWORD=secret
From the project root directory type the following:
composer update
php artisan key:generate
php artisan migrate
php artisan db:seed --class=InitUsersTableSeeder
Clone the repository https://github.com/rroycedev/rroyce-assetmgr to your project root directory
Copy the .env.example file to .env
Edit the .env file and change the the value of:
ASSETMGR_USER_PROVIDER_DRIVER=adldap
ADLDAP_ACCOUNT_PREFIX="cn="
ADLDAP_ACCOUNT_SUFFIX=",cn=Asset Manager,ou=groups,dc=rroyce,dc=com"
ADLDAP_CONTROLLERS=10.0.0.101
ADLDAP_PORT=389
ADLDAP_AUTO_CONNECT=false
ADLDAP_TIMEOUT=5
ADLDAP_BASEDN="dc=rroyce,dc=com"
ADLDAP_ADMIN_ACCOUNT_PREFIX="cn="
ADLDAP_ADMIN_ACCOUNT_SUFFIX=",dc=rroyce,dc=com"
ADLDAP_ADMIN_USERNAME=admin
ADLDAP_ADMIN_PASSWORD=
ADLDAP_USE_SSL=false
ADLDAP_USE_TLS=false
From the project root directory type the following:
composer update
php artisan key:generate
php artisan vendor:publish --tag=adldap
To run the webserver type the following from the project root directory:
php artisan server --host=<hostname> --port=<portnumber>