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).