forked from tools/josh
1
0
Fork 0
josh/README.md

33 lines
635 B
Markdown

# fwdekker.com
The source code of [my personal website](https://fwdekker.com/).
## Development
### Requirements
* [npm](https://www.npmjs.com/)
### Setting up
```shell script
# Install dependencies (only needed once)
$> npm ci
```
### Building
```shell script
# Build the application in `dist/` for development
$> npm run dev
# Same as above, but automatically rerun it whenever files are changed
$> npm run dev:server
# Build the application in `dist/` for deployment
$> npm run deploy
# Remove build files
$> npm run clean
```
### Testing
```shell script
# Run tests
$> npm test
# Run tests with coverage
$> npm run coverage
```