PomeloNote/frontend/svelte
dhain 2705fe27ef Notes can be displayed from a JSON String
Notes can be deleted (will not save to the JSON)
Notes can be added (will not save to the JSON)
You can click on a Note to open it but /editor route is not working properly
2022-09-25 10:27:04 +02:00
..
.idea Initial commit 2022-09-20 10:43:05 +02:00
src Notes can be displayed from a JSON String 2022-09-25 10:27:04 +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 Initial commit 2022-09-20 10:43:05 +02:00
package.json Initial commit 2022-09-20 10:43:05 +02:00
README.md README.md changed to explain docker commands 2022-09-20 10:58:25 +02:00
svelte.config.js Initial commit 2022-09-20 10:43:05 +02:00
tsconfig.json Initial commit 2022-09-20 10:43:05 +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