what's the easiest way to tell a box server to swi...
# box-products
r
what's the easiest way to tell a box server to switch from lucee to acf? ie, i did a 'box server start' in a directory and it worked fine, but i need to test something in acf now
r
This is the simplest
Copy code
CommandBox> start cfengine=adobe@2021
if you are not in Commandbox environment in CLI, then
Copy code
>box start cfengine=adobe@2021
r
trying now - i thought since it was lucee before id have to edit something. dang tooting - seems to be working - thank you
šŸ‘šŸ¼ 1
b
@raymondcamden It depends on whether you still want the other server or not. If you don't care, then you can just do
Copy code
server stop
start cfengine=...
which automatically updates your
server.json
file for you. If you want to test on both a Lucee and Adobe server side by side, then I'd start each server with a name
Copy code
start name=test1 cfengine=lucee
start name=test2 cfengine=adobe
which will create two server.json files • server-test1.json • server-test2.json
šŸ‘šŸ¼ 1