2010-06-06 09:21:44 +00:00
|
|
|
<?php
|
|
|
|
|
2010-08-10 17:44:51 +00:00
|
|
|
// Enter the Google Maps API for your site
|
2011-08-19 08:25:11 +00:00
|
|
|
define("GMAPS_API_KEY", "ABQIAAAA4T7AS90KUqGrNPOsl6eyCBS4mbmQPYGFaQoYTVDm_qb3IIB-WBSwfZE_KhJy2GpxCqBbVm7PoSKM9Q");
|
2010-08-10 17:44:51 +00:00
|
|
|
|
|
|
|
// Who should we email about errors etc?
|
2010-07-30 09:55:17 +00:00
|
|
|
define("ADMIN_EMAIL", "jon@hexoc.com");
|
2010-07-30 08:17:00 +00:00
|
|
|
|
|
|
|
define("LOCATION_SAVE_ENABLE", true);
|
2010-06-08 16:29:38 +00:00
|
|
|
|
2010-07-30 08:17:00 +00:00
|
|
|
// Path to the root of the git repo inc. trailing /
|
|
|
|
define("ROOT", "/var/www/hab/predict/");
|
|
|
|
|
2012-07-12 17:04:15 +00:00
|
|
|
// Path to python virtualenv to use
|
|
|
|
// define("PYTHON", ROOT . "ENV/bin/python");
|
|
|
|
|
2010-07-30 08:17:00 +00:00
|
|
|
// Path to prediction data dir from predict/
|
|
|
|
define("PREDS_PATH", "preds/");
|
2010-06-06 09:21:44 +00:00
|
|
|
|
2010-08-10 17:44:51 +00:00
|
|
|
// Filenames used by the predictor
|
2010-07-30 08:17:00 +00:00
|
|
|
define("SCENARIO_FILE", "scenario.ini");
|
|
|
|
define("FLIGHT_CSV", "flight_path.csv");
|
|
|
|
define("PROGRESS_JSON", "progress.json");
|
2012-07-12 17:04:15 +00:00
|
|
|
define("LOG_FILE", "py_log");
|
2010-06-06 09:21:44 +00:00
|
|
|
|
|
|
|
?>
|