I am working on a legacy system written in ColdFusion. I am attempting to set up a local development environment. I have had some minor success getting the main login page to load from a ColdBox server. I created a directory:
$ mkdir myapp
$ cd myapp
$ box
Then from the ColdBox CLI:
CommandBox> coldbox create app
CommandBox> start
I also copy my legacy code to a subfolder of myapp
:
$ cp <some path> legacy
Now I can navigate to 127.0.0.1:<port>/legacy
to get the login page for the project that I am working on. However, I can't login because there is no datasource configured with the authentication tables that my app expects. How do I configure a datasource to an existing database?