/**
|
|
* The type of the database being used
|
|
*/
|
|
export const DATABASE_TYPE: "mysql"|"mariadb" = "mysql";
|
|
|
|
/**
|
|
* The database host (Docker service name)
|
|
*/
|
|
export const DATABASE_HOST = "database";
|
|
|
|
/**
|
|
* The databse port
|
|
*/
|
|
export const DATABASE_PORT = 3306;
|
|
|
|
/**
|
|
* The database username
|
|
*/
|
|
export const DATABASE_USER = "root";
|
|
|
|
/**
|
|
* The password file for the database
|
|
*/
|
|
export const DATABASE_PASSWORD_FILE = "/run/secrets/mysql_root_password";
|