You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
at the moment if you start scatola with a DATABASE_URL that points to a non-existent file prisma will throw the following error
Error: P1013: The provided database string is invalid. Error parsing connection string
we should create an empty sqlite file if the DATABASE_URL is defined and CREATE_EMPTY_DATABASE is true, for example with sqlite3 this can be accomplished with sqlite3 file.db "VACUUM;"
The text was updated successfully, but these errors were encountered:
at the moment if you start scatola with a
DATABASE_URL
that points to a non-existent file prisma will throw the following errorwe should create an empty sqlite file if the
DATABASE_URL
is defined andCREATE_EMPTY_DATABASE
is true, for example with sqlite3 this can be accomplished withsqlite3 file.db "VACUUM;"
The text was updated successfully, but these errors were encountered: