Skip to content

Commit 1ba0a48

Browse files
feat(readme): customize default readme
1 parent 1c96489 commit 1ba0a48

File tree

1 file changed

+9
-22
lines changed

1 file changed

+9
-22
lines changed

README.md

Lines changed: 9 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,38 +1,25 @@
1-
# create-svelte
1+
# honegger.dev - Portfolio Website for Pascal Honegger
22

3-
Everything you need to build a Svelte project, powered by [`create-svelte`](https://github.com/sveltejs/kit/tree/master/packages/create-svelte).
4-
5-
## Creating a project
6-
7-
If you're seeing this, you've probably already done this step. Congrats!
8-
9-
```bash
10-
# create a new project in the current directory
11-
npm create svelte@latest
12-
13-
# create a new project in my-app
14-
npm create svelte@latest my-app
15-
```
3+
My personal work-in-progress portfolio website.
164

175
## Developing
186

19-
Once you've created a project and installed dependencies with `npm install` (or `pnpm install` or `yarn`), start a development server:
7+
After first clone you'll need to run `pnpm install` (using [pnpm](https://pnpm.io/)).
8+
You can then start a development server by running the following commands:
209

2110
```bash
22-
npm run dev
11+
pnpm dev
2312

2413
# or start the server and open the app in a new browser tab
25-
npm run dev -- --open
14+
pnpm dev --open
2615
```
2716

2817
## Building
2918

30-
To create a production version of your app:
19+
You can easily create a static production version:
3120

3221
```bash
33-
npm run build
22+
pnpm build
3423
```
3524

36-
You can preview the production build with `npm run preview`.
37-
38-
> To deploy your app, you may need to install an [adapter](https://kit.svelte.dev/docs/adapters) for your target environment.
25+
You can preview the production build with `pnpm preview` or simply serve the webapp using any webserver.

0 commit comments

Comments
 (0)