使用 mina 在 rails 应用程序上部署 ruby
Deploying ruby on rails app with mina
我在 public/uploads/attachments 中有一些附件文件,我想保留在生产服务器中,而不会在下一个部署过程中被 mina 覆盖(以防我更改我的代码)
有没有办法保留附件而不被覆盖?
请帮助
提前谢谢你。
这样添加:
set :shared_paths, ['config/database.yml', 'log', 'config/secrets.yml','public/uploads']
然后它将位于共享文件夹中,不会在每次部署时被替换
我在 public/uploads/attachments 中有一些附件文件,我想保留在生产服务器中,而不会在下一个部署过程中被 mina 覆盖(以防我更改我的代码) 有没有办法保留附件而不被覆盖? 请帮助
提前谢谢你。
这样添加:
set :shared_paths, ['config/database.yml', 'log', 'config/secrets.yml','public/uploads']
然后它将位于共享文件夹中,不会在每次部署时被替换