A simple CRUD project using SvelteKit, Prisma, sqlite, Tailwind CSS, and TypeScript.
Clone this project:
git clone git@github.com:ronsen/sveltekit-starter.gitOr you can use degit:
npx degit ronsen/sveltekit-starter sveltekit-starterRun these following commands to try locally:
cd sveltekit-starter
npm install
npm run devMigrate the database:
npx prisma migrate dev --name initDatabase seeding:
npx prisma db seedRun these following commands to create a Docker container:
docker build --tag catatan:1.0 .
docker container create --name catatan -p 3000:3000 catatan:1.0
docker container start catatan