You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
453 B

/**
* 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";