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.
17 lines
418 B
17 lines
418 B
<?php
|
|
|
|
$hostname = getHostName();
|
|
$front_url = "http://$hostname:5173";
|
|
|
|
const _SUPPORTS_FAST_REFRESH = true;
|
|
$_data_source_name = "sqlite:${_SERVER['DOCUMENT_ROOT']}/../dev-database.sqlite";
|
|
|
|
// no user and password needed for sqlite databases
|
|
const _DATABASE_USER = null;
|
|
const _DATABASE_PASSWORD = null;
|
|
|
|
function _asset(string $assetURI): string {
|
|
global $front_url;
|
|
return $front_url . "/" . $assetURI;
|
|
}
|