Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,15 +12,10 @@ My personal website, currently accessible at:
## start development server

```
> npx @11ty/eleventy --serve
> npx eleventy --serve
```

watch for diagram changes:
```
> npx diagrams watch src
```

or run both with
or:
```
> npm start
```
Expand All @@ -40,5 +35,10 @@ Start development server first, and then run tests with cypress with:

Cypress UI can be open with:
```
> npx @cypress/cypress open
> npx cypress open
```

Node processes for current session can be stopped with:
```
> pkill -s 0 node
```
1 change: 1 addition & 0 deletions cypress.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,5 +8,6 @@ module.exports = defineConfig({
return require('./cypress/plugins/index.js')(on, config)
},
baseUrl: 'http://localhost:8080',
video: false,
},
})