开源实例之LaraBlog
前言
A full-featured blogging system for personal use. No frontend theme and anything heavy or unnecessary library used.
本实例是基于 Laravel 10 开发的博客系统。
实例地址
实例配置
配置 | 描述 |
---|---|
系统 | Debian |
服务端 | PHP 8.1 |
数据库 | MariaDB 10.5 |
程序 | LaraBlog |
实例部署
权限要求
- 具有系统读写权限
- 已安装 PHP
- 已安装 MySQL
安装程序
仓库地址:https://github.com/alimranahmed/LaraBlog
#克隆代码
git clone https://github.com/alimranahmed/LaraBlog.git
cd LaraBlog
#安装依赖
composer install
#完善配置
cp .env.example .env
vim .env
#数据初始化
php artisan key:generate
php artisan migrate:refresh --seed
#启动
php artisan serve --host=0.0.0.0
实例体验
后记
本实例仅供参考,不定期重置数据。