-- This is not deployment ready - it is just to show off my CRUD abilities in SvelteKit using an ORM and simple database.
-- The Login / Logout functionality are not setup at this time.
To clone and run this application with a sqlite development db:
# Clone this repository
$ git clone https://github.com/chasetmartin/sveltePriceEstimator.git
# Go into the repository
$ cd sveltePriceEstimator
# Install dependencies
$ npm install
# Change the schema.prisma file to point to your own database
datasource db {
provider = "sqlite"
url = "file:./dev.db"
}
# Initialize your dev database
$ npx prisma db push
# Run the app
$ npm run dev