From 28b42125a1fdbbd6f284abb01fb394f5f77bb1b6 Mon Sep 17 00:00:00 2001 From: OniWithTheHoodie <144009897+OniWithTheHoodie@users.noreply.github.com> Date: Fri, 13 Sep 2024 14:25:14 +0200 Subject: [PATCH] Update README.md --- README.md | 50 +++++++++++++++++++++++++++++--------------------- 1 file changed, 29 insertions(+), 21 deletions(-) diff --git a/README.md b/README.md index 45aadf89..ca39ca50 100644 --- a/README.md +++ b/README.md @@ -1,31 +1,39 @@ -> _Fork_ deze leertaak en ga aan de slag. Onderstaande outline ga je gedurende deze taak in jouw eigen GitHub omgeving uitwerken. De instructie vind je in: [docs/INSTRUCTIONS.md](docs/INSTRUCTIONS.md) +## Creating a project -# Titel - +If you're seeing this, you've probably already done this step. Congrats! -## Inhoudsopgave +``` - * [Beschrijving](#beschrijving) - * [Kenmerken](#kenmerken) - * [Installatie](#installatie) - * [Gebruik](#gebruik) - * [Bronnen](#bronnen) - * [Licentie](#licentie) +# create a new project in the current directory +npm create svelte@latest -## Beschrijving - - - +# create a new project in my-app +npm create svelte@latest my-app -## Kenmerken - +``` -## Installatie +## Developing -## Gebruik +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 + +```` + +## Building + +To create a production version of your app: + +``` +npm run build + +``` + +You can preview the production build with `npm run preview`. -## Bronnen -## Licentie -This project is licensed under the terms of the [MIT license](./LICENSE).