Configurations
Basic Devproxy Config
More Advanced Devproxy Config
For large teams on large projects with heavy CI/CD requirements, it's possible to separate the TEST environment. This is most useful when;
You have multiple devs working concurrently
The TEST platform needs to be a vetted "release candidate" stage of content
The basic approach here is;
Add a
testbranch to your Github repoPoint the TEST code host in Netlify to the
testbranch ( instead ofdev)Formalize the promotion of the
devtotestbranch merges
In general;
DEVs push and pull to the
devbranchWhen an RC is ready, the team lead merges the
devbranch intotestThis
testcommit automatically gets picked up by Netlify, and published to the TEST code server
Testing team evaluates it using
test.mysite.comWhen a release is confirmed, the release manager merges the
testbranch intomainThis
maincommit automatically gets picked up by Netlify, and published to the PROD code serverAt the same time, any changes in Webflow would also be published so that the new HTML/CSS design changes are synchronized with the PROD code release
Last updated