Using the following command, you’ll create a project and the file structure for your db:
forest projects:create reproduce-bug -H localhost -P 3333 -c mongodb://localhost:27017/bug
With:
reproduce-bug
being your new project name (chose one that is not already taken)-P
is the port number of your new agent-H
is the host name of this new agent-c
contains the connection string to your DB that will help reproduce the issue. This DB is introspected to create the corresponding Mongoose schemas.
You need to be logged in first, if it’s not the case, run forest login
to authenticate your command line executable locally.