Home  >  Article  >  Backend Development  >  有人部署过 Laravel 吗?

有人部署过 Laravel 吗?

WBOY
WBOYOriginal
2016-06-06 20:46:221185browse

服务器上,数据库是依赖 Migrations,还是直接导SQL,还是自己写install。

vender 的是在服务器上也用 composer 还是手动传?

服务器上也用 artisan/composer 吗?

其他注意事项有什么?

回复内容:

服务器上,数据库是依赖 Migrations,还是直接导SQL,还是自己写install。

vender 的是在服务器上也用 composer 还是手动传?

服务器上也用 artisan/composer 吗?

其他注意事项有什么?

在预发布环境从代码库完整 clone 一份代码到指定路径,然后执行

<code class="lang-bash">composer install --prefer-dist --no-dev
composer dumpautoload --no-dev --optimize
</code>

然后通过 rsync 同步到生产环境

<code class="lang-bash">rsync -zr --exclude-from=${PROJECT_DIR}/.deploy/rsync.excludes ${PROJECT_DIR}/ production:${PROJECT_DIR}/
</code>

vendor 目录里有很多文件并不需要发布到生产环境,可以设置一个忽略文件列表:

<code class="lang-bash">.git/

app/config/local/
app/config/test/
app/config/testing/
app/config/pre-release/

app/config/packages/**/local/
app/config/packages/**/test/
app/config/packages/**/pre-release/

app/database/migrations/*
app/database/seeds/*

app/start/local.php
app/start/test.php
app/start/testing.php
app/start/pre-release.php

app/storage/cache/*
app/storage/logs/*
app/storage/sessions/*
app/storage/views/*

app/tests/*Test.php
app/tests/**/*Test.php

vendor/**/tests/
vendor/**/test/
vendor/**/Tests/
vendor/**/doc/
vendor/**/notes/
vendor/**/test-suite/
vendor/**/*.md
vendor/**/README
vendor/**/phpunit.xml.*
vendor/**/.travis.yml

phpunit.xml
</code>

为了发布速度更快一些,可以先打包,然后再 scp 到生产环境。

这些工作都可用脚本来自动完成,只需前期调试完善,后面发布就很轻松了。

直接composer。。。

composer部署便于以后升级

不上传vender,用composer install方便

  1. 我觉得升级数据库用 Migrations 不靠谱。比如,表结构变了,旧数据要导入新表里,这个怎么用Migrations 实现?除了在 Migrations 写导入导出逻辑,我想不到其他方法了。但这样和自己写脚本没啥区别了吧。

  2. vender 还是直接 composer 吧。它就是干这个活的。不过需要注意本地生成的 .lock 需要删除。

  3. 服务器上也用 artisan/composer。

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn