voyager的安装于使用入门
Posted carious
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了voyager的安装于使用入门相关的知识,希望对你有一定的参考价值。
使用代理服务器安装laravel
http_proxy=http://localhost:1080 composer create-project --prefer-dist laravel/laravel blog
下载voyager包
composer require tcg/voyager
安装voyager
php artisan voyager:install --with-dummy
配置服务器与网站
设置数据库:
CREATE DATABASE ‘voyager‘;
CREATE DATABASE voyager;
CREATE USER ‘dog‘@‘localhost‘ IDENTIFIED BY ‘123456‘;
GRANT ALL ON voyager.* TO ‘dog‘@‘localhost‘;
sudo cp /etc/nginx/sites-available/default /etc/nginx/sites-available/blog
sudo ln -s /etc/nginx/sites-available/blog /etc/nginx/sites-enabled/blog
修改/etc/hosts使本地也能够访问
默认用户:[email protected]
默认密码:password
以上是关于voyager的安装于使用入门的主要内容,如果未能解决你的问题,请参考以下文章
安装包时出错(安装失败,将 ./composer.json 还原为其原始内容。)(Laravel 管理包 - Voyager)[重复]