This is a simple starter template for building and running an app using Svelte. To get going, make sure you have NodeJS and git installed on your machine.
Next, cd
to the directory where this project has been cloned...
git clone https://github.com/ganochenkodg/svelte-template.git
cd ./svelte-template
...install all project dependencies...
npm install
...and run it for developing...
npm run dev
...or build the application.
npm run build
Also it have Dockerfile for dockerize your app.
docker build -t svelte-template ./
docker run -p 80:8080 svelte-template