How can I split my project into 2 modules - development project and live version?

Hi!

Is there any way to split my project into 2 types (phases) - In one place I would develop and modify the web application, and in the other place I would deploy the live version. What I mean.
I have a frontend (WeWeb) and a backend (Supabase). But as I understand it, the current frontend is only connected to one version of Supabase - the working/live version. To test the updates I will develop in frontend and backend, I need to make another version of backend (Supabase) ? How to do it properly so as not to affect the live version while I develop the updates ? Please share your experience, how do you divide your web application into development environment and uploaded version ? It’s important to me that development doesn’t interfere with the live version. Is it possible to quickly update the live version from the version I am developing? Any advice would be appreciated!

supabase has branching that you can set up and then you just change the keys on your front end before you deploy

1 Like

Thanks for the tip! I’ll try to find in the documentation how it can be done. I am new in this direction, so I may ask stupid questions).