https://github.com/smallruraldog/base_project
基础项目
https://github.com/smallruraldog/base_project
Last synced: about 1 year ago
JSON representation
基础项目
- Host: GitHub
- URL: https://github.com/smallruraldog/base_project
- Owner: SmallRuralDog
- Created: 2018-11-27T09:54:33.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-22T10:43:57.000Z (over 7 years ago)
- Last Synced: 2025-02-13T19:40:10.502Z (over 1 year ago)
- Language: PHP
- Size: 2.41 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Laravel 项目基本搭建
### 环境要求
- php 7.2 +
- mysql 5.7 +
- Nginx、Apache
- Redis
### 第一步:下载项目,安装扩展
```
git clone --depth=1 https://github.com/SmallRuralDog/base_project.git my-project
cd my-project
composer install
```
### 第二部:配置env
创建一个空数据库 ,将`/database/sql.sql` 导入
`.env.example` 复制一份为 `.env`,并配置好
执行 `php artisan key:generate`
执行 `php artisan passport:install`
完成