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

33 lines
635 B
Markdown
Raw Permalink Normal View History

2019-10-21 03:32:49 +02:00
# fwdekker.com
The source code of [my personal website](https://fwdekker.com/).
## Development
2019-10-31 19:01:41 +01:00
### Requirements
2019-10-26 19:29:00 +02:00
* [npm](https://www.npmjs.com/)
### Setting up
2019-10-21 03:32:49 +02:00
```shell script
2019-10-26 19:29:00 +02:00
# Install dependencies (only needed once)
$> npm ci
2019-10-21 03:32:49 +02:00
```
2019-10-26 19:29:00 +02:00
### Building
2019-10-26 19:29:00 +02:00
```shell script
2020-05-03 20:52:28 +02:00
# Build the application in `dist/` for development
2019-10-31 19:01:41 +01:00
$> npm run dev
# Same as above, but automatically rerun it whenever files are changed
$> npm run dev:server
2020-05-03 20:52:28 +02:00
# Build the application in `dist/` for deployment
2019-10-31 19:01:41 +01:00
$> npm run deploy
# Remove build files
$> npm run clean
2019-10-26 19:29:00 +02:00
```
### Testing
2019-10-21 03:32:49 +02:00
```shell script
# Run tests
2019-10-29 18:36:26 +01:00
$> npm test
# Run tests with coverage
$> npm run coverage
2019-10-21 03:32:49 +02:00
```