I have a problem with the install repository script. I have to use SQlite. In order to use SQlite with laravel the database must be created. The deploy script fails if there is no database there. But it is catch 22 because I don't want the database in version control as this causes errors with git. Is there a way to edit the deploy script or laravel to create the SQlite database on running the migration script?
I know I can do this manually with git and the artisan touch command but this defeats the point of the deploy script.