24 lines
536 B
Markdown
24 lines
536 B
Markdown
# Personal Website
|
|
This is the repository for Daniel's personal website.
|
|
|
|
## Project setup
|
|
Dependencies are read and installed from `package.json` upon application start or build.
|
|
|
|
### Compiles and hot-reloads for development
|
|
```
|
|
docker-compose up vue
|
|
```
|
|
|
|
### Compiles and minifies for production
|
|
```
|
|
docker build -t daniel-website/nginx:dev -f docker/nginx/Dockerfile .
|
|
```
|
|
|
|
### Lints and fixes files
|
|
```
|
|
docker-compose exec vue yarn lint
|
|
```
|
|
|
|
### Customize configuration
|
|
See [Configuration Reference](https://cli.vuejs.org/config/).
|