[!IMPORTANT] This file needs to updated in order to match the english README file.
该文件需要更新才能匹配 英语 README 文件。
Read this in other languages
This file is automatically translated. If you notice an error, please correct it yourself (by making a PR) or write about it in the issues.
这是 Laravel 博客入门套件项目,带有 Filament 管理面板。
该存储库的目标是通过一个简单的应用程序展示良好的 Laravel 开发实践。
## 特征
打开一个 新问题 来请求功能(或者如果您发现错误)。
克隆项目:
git clone git@github.com:gomzyakov/larajournal.git
我相信你已经安装了 Docker。 如果没有,只需在 Mac、Windows 或 Linux。
使用以下命令构建larajournal
图像:
docker compose build --no-cache
此命令可能需要几分钟才能完成。
构建完成后,您可以使用以下命令在后台模式下运行环境:
docker compose up -d
我们现在将运行composer install
来安装应用程序依赖项:
docker compose exec app composer install
复制环境设置:
docker compose exec app cp .env.local .env
使用“artisan”Laravel 命令行工具设置加密密钥:
docker compose exec app ./artisan key:generate --ansi
迁移数据库和种子假数据:
docker compose exec app ./artisan migrate:fresh --seed
然后在您喜欢的浏览器中打开 http://127.0.0.1:8000。 祝您使用 Laravel 博客愉快!
访问Docker容器:
docker exec -ti larajournal-app bash
## 执照
这是根据 MIT 许可证 许可的开源软件。