mirror of
https://git.jami.net/savoirfairelinux/jami-daemon.git
synced 2025-08-12 22:09:25 +08:00

The contents of the website will be stored in doc/, because they are actually documentation.
20 lines
289 B
Plaintext
20 lines
289 B
Plaintext
<?php
|
|
|
|
/**
|
|
* SFLphone website configuration file
|
|
*/
|
|
|
|
|
|
/** Git repository */
|
|
$GIT_REPOS = '../.git';
|
|
|
|
/** Use the branch for fetching latest revs. of pages */
|
|
$USE_BRANCH = 'master';
|
|
|
|
/** Cache path */
|
|
$CACHE_PATH = 'cache';
|
|
|
|
/** File prefix (inside the git trees) */
|
|
$PREFIX = 'doc';
|
|
|
|
?> |