-
Notifications
You must be signed in to change notification settings - Fork 0
/
config.php
36 lines (30 loc) · 1.48 KB
/
config.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<?php
/* -*- tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
/**
* The project configuration file configures all the apps in your project.
*/
return array(
// Once your work is completed, you must switch the flag
// to false as in case of errors in debug mode, a lot of
// data are printed on screen.
// The main debug flag will set the logging to debug
// mode, but also the handling of errors.
'debug' => true,
'base_urls' => '/demo',
'urls' => include __DIR__.'/urls.php',
'secret_key' => '&+Rpr96#Rr0gF-aCp%j|ZZE8o*%v F~(-@-QkOQ|2AVUqM<H=kfpp_DH3#]7jU-1',
'admins' => array(array('1st Admin Name', '[email protected]')),
// List of installed applications
'installed_apps' => array('helloworld', 'photonchat'),
// The templates are compiled as .php files and are
// stored in the tmp folder.
'tmp_folder' => sys_get_temp_dir(),
// The template folders are where your templates are stored.
'template_folders' => array(__DIR__ . '/apps/photonchat/templates'),
// List of installed tasks
'installed_tasks' =>
array('photonchat_server' => '\photonchat\task\Server'),
// And configuration for each task
'photon_task_photonchat_server' =>
array('m2_pub' => 'tcp://127.0.0.1:9996'),
);