14 lines
447 B
Plaintext
14 lines
447 B
Plaintext
<?php
|
|
|
|
use Phast\System;
|
|
|
|
// Here you define some common application configuration...
|
|
System::$Configuration["Application.Title"] = "PHP Hypertext Application Server Technology";
|
|
System::$Configuration["Paths.Pages"] = [ "/ui/pages" ];
|
|
|
|
// Your normal Configuration.inc.php would not be included in your repository,
|
|
// as it may contain sensitive information such as database passwords, etc.
|
|
//
|
|
// Please add it to your .gitignore !
|
|
|
|
?> |