将生产环境同步至测试环境

Given we have different settings on a staging site, mainly

  1. Url is different
  2. Auth0 settings are different and
  3. Email is disabled
    what would be a good way to get the latest data from a production discourse site into a staging site.

I’m thinking.

  1. Export settings via console.
  2. backup production database to s3
  3. restore staging from s3
  4. restore settings via console.

That sounds like a good approach. We have a couple of rake tasks to help with exporting/importing site settings:

rake site_settings:export

and

rake site_settings:import

I’ve also got a ruby app that will upload settings

The auth0 config might be as simple as allowing the new site to the auth0 config.

If you don’t configure email, it doesn’t matter if you disable it.

这个一直失败……它提示“不知道如何构建任务 ‘site_settings:export’”。

我意识到这已经很晚了,但供将来参考,您需要在 rake 命令可用之前设置帖子中链接的 rake 任务。