
Arikaim
Content Management System
Getting Started
Frontend
Extensions
Themes
Modules
Arikaim CLI
Developers
Configuration
All Arikaim configuration files are located in
Application
'settings' => [
'debug' => true,
'jwt_key' => "jwt_key_1",
'defaultLanguage' => "en",
'cache' => true,
'disableInstallPage' => false
]
Property | Description | Default Value |
---|---|---|
debug | Debug mode. | true |
jwt_key | Key used for JWT authentication. | jwt_key_1 |
defaultLanguage | Default language code. | en |
cache | Disable or enable cache. | true |
disableInstallPage | Disable or enable installation page. | false |
Database
Arikaim uses Laravel database component
Database connection settings:'db' => [
'database' => "arikaim",
'username' => "",
'password' => "",
'driver' => "mysql",
'host' => "localhost",
'charset' => "utf8",
'collation' => "utf8_bin",
'prefix' => ""
]
Property | Description | Default Value |
---|---|---|
database | Database name. | arikaim |
username | Database user name. | |
password | Database user password. | |
driver | Supported drivers: MySQL, Postgres, SQL Server, and SQLite. | mysql |
host | Database host. | localhost |
charset | Database charset. | utf8 |
collation | Database collation. | utf8_bin |
System errors messages.