The installation script from composer.json (under the key 'post-update-cmd') should have already created the files mentioned on this page.
We mention them explicitly because you will need to visit them to fully configure your development environment.
The installation script will duplicate the following files:
config/autoload/cors.local.php.distasconfig/autoload/cors.local.php.
If your API is consumed by another application, make sure to configure the
allowed_originsvariable. Normally, the other configuration items incors.local.phpshould be left as-is. If you need to tweak them, visit the CORS tutorial.
config/autoload/local.php.distasconfig/autoload/local.php.
local.phpis the main configuration file for your application. It contains the database connection parameters, the API key, and other configuration items.
config/autoload/mail.local.phpfrom thedot-mailpackage installed in thevendorfolder.
If your API sends emails, you also need to configure the
SendmailorSMTPto send emails. If you opt forSMTP, ake sure to configure the SMTP connection parameters under thesmtp_optionskey.
config/autoload/local.test.php.distasconfig/autoload/local.test.phpto run and create tests.
This creates a new in-memory database that your tests will run on.