Everything you need to build a Svelte project, powered by create-svelte
.
If you're seeing this, you've probably already done this step. Congrats!
# create a new project in the current directory
npm init svelte@next
# create a new project in my-app
npm init svelte@next my-app
Note: the
@next
is temporary
Once you've created a project and installed dependencies with npm install
(or pnpm install
or yarn
), start a development server:
npm run dev
# or start the server and open the app in a new browser tab
npm run dev -- --open
To create a production version of your app:
npm run build
You can preview the production build with npm run preview
.
To deploy your app, you may need to install an adapter for your target environment.
Currently adapter-node is used. In order to build container image following command have to be issued:
# in project directory execute
podman build -f docker/Dockerfile -t kit-demo .
# use --no-cache to build completely dropping previous cache
podman build --no-cache -f docker/Dockerfile -t kit-demo .
# expected output
$ podman build --no-cache -f docker/Dockerfile -t kit-demo .
[1/2] STEP 1/7: FROM registry.access.redhat.com/ubi8/nodejs-16:latest AS builder
[1/2] STEP 2/7: RUN npm install -g pnpm
..
Successfully tagged localhost/kit-demo:latest
f4566121228fa59e55e176da24726413b17d26296eeb1fabb2ef6ddc7223a12f
In order to start named container with newly created image use:
podman run -d --name kit-demo -p 3000:3000 kit-demo