Skip to content

Latest commit

 

History

History
32 lines (22 loc) · 770 Bytes

configuration.md

File metadata and controls

32 lines (22 loc) · 770 Bytes

Configuration

The configuration files are located at /confg.

App

The app.php file includes configuration required by Bones.

In addition, this file also contains the following keys:

[
    'version' => '1.0.0' // Current app version (string)
]

Deploy

The deploy.php file includes configuration for deployment scripts (console commands). This is only needed if intending to use the included DeployApp or DeployPurge console commands.

Example:

return [
    'backup_path' => App::getEnv('APP_BACKUP_PATH') // Path where deployment backups will be saved on the server
];