Is continuous app development and deployment possible? #1145
-
I am unclear as to whether it is possible to create a web app with BB, deploy it, and then extend its features and upgrade the deployed app again. Does that work? Are data then also updated in the local BB Builder? How will conflicts like deleted columns be handled? Or is this just not possible, meaning that one has to develop the feature-complete app before deploying it? |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Hi @FloMiLe - this is currently possible, if you deploy an app again some time after originally deploying an app it will work - the way that conflicts/merges are handled is via CouchDB's replication strategy which will compare your local database to the existing one and then merge them. This means that any data which was created in your deployed app will be maintained, issues like column deletion will be fine as this will update the schema of the table in the live app. |
Beta Was this translation helpful? Give feedback.
Hi @FloMiLe - this is currently possible, if you deploy an app again some time after originally deploying an app it will work - the way that conflicts/merges are handled is via CouchDB's replication strategy which will compare your local database to the existing one and then merge them. This means that any data which was created in your deployed app will be maintained, issues like column deletion will be fine as this will update the schema of the table in the live app.
There are still some conflict issues that we have yet to solve, for example deploying a user account which you've been testing with locally and have added relationships to, if the user has changed significantly in your loca…