]> git.bts.cx Git - cx.git/blob - public/index.php
post metadata support (not very good yet)
[cx.git] / public / index.php
1 <?php
2
3 /*
4 ,-----,--. ,--. ,-----. ,--.
5 ' .--./\ `.' / | |) /_| |,---. ,---.,--. ,--.,--,--,--.--.,---.
6 | | .' \ | .-. | | .-. | .-. | |.'.| ' ,-. | .--| .-. :
7 ' '--'\/ .'. \ | '--' | ' '-' ' '-' | .'. \ '-' | | \ --.
8 `-----'--' '--' `------'`--'`---'.`- /'--' '--'`--`--`--' `----'
9 `---'
10 */
11
12 $main_file = join(DIRECTORY_SEPARATOR, array(__DIR__, "..", "cx", "cx.php"));
13 $db_file = join(DIRECTORY_SEPARATOR, array(__DIR__, "..", "db", "btscx.db"));
14 $data_folder = join(DIRECTORY_SEPARATOR, array(__DIR__, "..", "data"));
15 $public_data_folder = join(DIRECTORY_SEPARATOR, array(__DIR__, "data"));
16 require_once($main_file);
17 cx($db_file, $data_folder, $public_data_folder);