A minimal project template for Electron and SvelteKit configured with adapter-static.
git clone https://github.com/lcharleslaing/electron-sveltekit-base.git <your project name>
npm run dev
: Runs SvelteKit in dev modenpm run preview
: Runs SvelteKit in production modenpm run electron
: Runs SvelteKit with electron in dev modenpm run build
: Runs SvelteKit compilernpm run dev:package
: Creates an Electron package (you can inspect the contents)npm run package
: Creates a distributable Electron packagenpx prisma migrate dev
: Creates a database migration (This is setup with SQLite)npx prisma studio
: Opens in the browser, a UI for interacting with your databaseDownload the template and install the dependencies:
npm install --save bootstrap@next @fortawesome/fontawesome-free
Add these lines in src/app.scss
:
@import "bootstrap/scss/bootstrap";
@import "@fortawesome/fontawesome-free/css/all.min.css";