Hello!
This is my first ever attempt at deploying and this is my first use of a database.
I'm trying to deploy a project I created using RedwoodJS and I initially created the project using Redwood's default DB SQLite, but now that I'm trying to convert the DB to postgreSQL and deploy using Railway, the build is failing.
When I use 'railway up' command I specifically get 'Error: No start command could be found'
I can't see any other errors, I've installed postgreSQL and its showing on Railway, I feel like I've missed something along the way, I have been trying to piece it together using Railway docs and a quick guide I saw by ajcwebdev.
I feel like I've messed something up in the schema file? Specifically this:
datasource db {
provider = "postgresql"
url = env("DATABASE_URL")
}
Any help is appreciated!