The autoReload feature is required to use this plugin. Start your server with `strapi develop`

So you are basically saying that we cant use Content-type builder online but only locally. However, i have some questions:

  1. How can i sync my local/dev created content with the production while in local i’m using sqlite database and in production postgres? And how do i keep that always in sync?
  2. Does this means that only one developer can “develop” the system (meaning can create blocks and stuff…) and you can’t collaborate with a remote co-worker?
  3. I setup a CI/CD pipeline with github and as you see in the screenshot:

i am running a script with some steps/commands to run when i push to github. But on the next push the changes dont take effect becasue the server is already running. I think i should add some command before npm i which stops the server, installs the dependencies and then starts it again as i have it here npm run start. I need something just like CTRL+C is doing in terminal.