Configuration
When Badaso has been successfully installed, you will find the configuration files in config/badaso.php
and .env
. In this file you will find many options for changing the configuration of your Badaso installation.
#
Back UpThe backup settings can be changed in the .env
file.
#
AWS S3.env
AWS_ACCESS_KEY_ID=AWS_SECRET_ACCESS_KEY=AWS_DEFAULT_REGION=AWS_BUCKET=AWS_URL=
AWS_ACCESS_KEY_ID
: Fill in to use the backup feature to AWS S3.AWS_SECRET_ACCESS_KEY
: Fill in to use the backup feature to AWS S3.AWS_DEFAULT_REGION
: S3 bucket region for uploading backup files.AWS_BUCKET
: S3 bucket name to upload the backup file.AWS_URL
: AWS S3 bucket URL.
#
Google Drive.env
GOOGLE_DRIVE_CLIENT_ID=GOOGLE_DRIVE_CLIENT_SECRET=GOOGLE_DRIVE_REFRESH_TOKEN=GOOGLE_DRIVE_FOLDER_ID=
GOOGLE_DRIVE_CLIENT_ID
: Fill in to use the backup feature to Google Drive.GOOGLE_DRIVE_CLIENT_SECRET
: Fill in to use the backup feature to Google Drive.GOOGLE_DRIVE_REFRESH_TOKEN
: Fill in to use the backup feature to Google Drive.GOOGLE_DRIVE_FOLDER_ID
: Folder id to upload backup files into the specified folder.
#
Dropbox.env
DROPBOX_AUTH_TOKEN=
GOOGLE_DRIVE_CLIENT_ID
: Fill in to use the backup feature to Dropbox.
#
Hidden TablesThe hidden table is useful for hiding the users table on the CRUD Generator page. Hidden tables can be set in badaso configuration file which is config\badaso-hidden-tables.php
.
config/badaso-hidden-tables.php
<?php
return [ // add the table here];
#
Watch TablesWatch tables allow you to create automatic CRUD_DATA seeders on tables. Watch tables can be set in badaso configuration file which is config\badaso-watch-tables.php
.
config/badaso-hidden-tables.php
<?php
return [ // add the table here];