PomeloNote/frontend/svelte
2022-09-27 07:37:13 +02:00
..
.idea Initial commit 2022-09-20 10:43:05 +02:00
src Function comments 2022-09-27 07:37:13 +02:00
static Initial commit 2022-09-20 10:43:05 +02:00
.dockerignore Initial commit 2022-09-20 10:43:05 +02:00
.gitignore Initial commit 2022-09-20 10:43:05 +02:00
.npmrc Initial commit 2022-09-20 10:43:05 +02:00
Dockerfile Initial commit 2022-09-20 10:43:05 +02:00
package-lock.json Merge branch 'listing' into develop 2022-09-26 00:00:04 +02:00
package.json Cookie creation and error handling 2022-09-25 22:08:38 +02:00
README.md Login API request implemented 2022-09-23 00:45:24 +02:00
svelte.config.js Initial commit 2022-09-20 10:43:05 +02:00
tsconfig.json Login Skeleton 2022-09-23 00:06:18 +02:00
vite.config.ts Initial commit 2022-09-20 10:43:05 +02:00

Creating the svelte project

Create the docker image

docker build -t svelte .

Run the docker container

docker run --name svelte -dp 5173:5173 svelte

Mastercommand for rebuild run etc.

docker build -t svelte .;docker stop svelte;docker rm svelte; docker run --name svelte -dp 5173:5173 svelte