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

24 lines
457 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
$> grunt
```
2019-10-21 03:32:49 +02:00
```shell script
2019-10-26 19:29:00 +02:00
# Build the application in `build/` for deployment
$> grunt deploy
2019-10-21 03:32:49 +02:00
```