Just a few comments on running etsy-dashboard in Heroku: ``` bash $ git mv htdocs/css css $ git mv htdocs/js js $ git mv htdocs/example.php index.php ``` ``` ascii diff --git a/index.php b/index.php index 86ef3bc..6bda19b 100644 --- a/index.php +++ b/index.php @@ -1,6 +1,6 @@ <?php -require_once dirname(dirname(__FILE__)) . 'lib/bootstrap.php'; +require_once 'lib/bootstrap.php'; $times = Dashboard::getTimes(); ``` ``` bash $ heroku create -s cedar $ git push heroku master ```
Just a few comments on running etsy-dashboard in Heroku: