I'm trying to install Sylius on Heroku. Here's what I do (taken from https://www.christophh.net/2013/10/19/sylius-on-heroku/):
- Create a Heroku app, add a Postgres db
composer create-project -s dev sylius/sylius-standard myAppName
- Push my app to Heroku
heroku run php -d memory_limit=-1 app/console sylius:install
During installation I am using db created in step 1, so I answer N
to
It appears that your database already exists. Would you like to reset it?
My installation crashes with:
[PHPCR\RepositoryException] Unexpected error talking to the backend: An exception occurred while executing 'SELECT 1 FROM phpcr_workspaces WHERE name = ?' with params ["default"] : SQLSTATE[42P01]: Undefined table: 7 ERROR: relation "phpcr_workspaces" does not exist LINE 1: SELECT 1 FROM phpcr_workspaces WHERE name = $1
It seems that somewhere the script expects phpcr_workspaces
table to be present, but there is none. Does anyone have a clue?