josh/README.md

25 lines
464 B
Markdown
Raw 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/)
### CLI
2019-10-21 03:32:49 +02:00
```shell script
2019-10-26 19:29:00 +02:00
# Install dependencies (only needed once)
$> npm install
2019-10-21 03:32:49 +02:00
```
2019-10-26 19:29:00 +02:00
```shell script
# Build the application in `build/` for development
2019-10-31 19:01:41 +01:00
$> npm run dev
2019-10-29 18:36:26 +01:00
# Build the application in `build/` for deployment
2019-10-31 19:01:41 +01:00
$> npm run deploy
2019-10-26 19:29:00 +02:00
```
2019-10-21 03:32:49 +02:00
```shell script
2019-10-29 18:36:26 +01:00
# Run tests on the application in `build/`
$> npm test
2019-10-21 03:32:49 +02:00
```