josh/README.md

26 lines
516 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-26 19:29:00 +02:00
### Prerequisites
* [npm](https://www.npmjs.com/)
* [grunt-cli](https://www.npmjs.com/package/grunt-cli)
### 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-29 18:36:26 +01:00
$> grunt dev
# Build the application in `build/` for deployment
$> grunt 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
```