forked from tools/josh
|
||
---|---|---|
src | ||
.editorconfig | ||
.gitattributes | ||
.gitignore | ||
.nycrc.json | ||
Gruntfile.js | ||
LICENSE | ||
README.md | ||
package-lock.json | ||
package.json | ||
tsconfig.json |
README.md
fwdekker.com
The source code of my personal website.
Development
Requirements
Setting up
# Install dependencies (only needed once)
$> npm ci
Building
# 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
# Run tests
$> npm test
# Run tests with coverage
$> npm run coverage