-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Move configuration items to app.php #13
Comments
Should I use PHP define or [cakePHP configuration]? (https://book.cakephp.org/3.0/en/development/configuration.html#bootstrapping-cakephp) |
These should be done in the cake configuration (config/app.php or an additional included file). https://book.cakephp.org/3.0/en/development/configuration.html |
Configuration parameters which are not secure should be set so that the application will work out-of-the-box: Lines 387 to 399 in 1a2e45a
For example, the constants for |
Resolved. |
Any configuration should be part of the config/app.php.
For example:
lcsu/src/Utility/PhpNetworkLprPrinter.php
Line 21 in fd1e3dc
lcsu/src/Utility/PhpNetworkLprPrinter.php
Line 84 in fd1e3dc
Also:
lcsu/src/Auth/EnvAuthenticate.php
Line 97 in fd1e3dc
or, remove the option documentation:
lcsu/src/Auth/EnvAuthenticate.php
Lines 45 to 58 in fd1e3dc
For any expected configuration in app.php (since it is not captured in version control), add sample configuration in config/app.default.php
The text was updated successfully, but these errors were encountered: