Skip to content

Commit

Permalink
Add SSL support
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilmielnik committed Feb 1, 2020
1 parent d677548 commit 4af1fe5
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Kamil Mielnik's Curriculum Vitae
http://cv.kamilmielnik.com/
https://cv.kamilmielnik.com/

## Setup
1. `npm install`
Expand All @@ -17,7 +17,7 @@ Generate PDF version of the CV based on files in `./build/`
### `npm run deploy`
Copy files from `./build/` to a remote server (setup via variables in `.env`)

### `npm run publish`
### `npm run publish`
Run `build`, `createPdf` & `deploy` scripts one by one

### `npm start`
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "cv",
"version": "1.5.4",
"version": "1.5.5",
"description": "Kamil Mielnik's Curriculum Vitae",
"engines": {
"node": ">=12.4.0"
Expand Down Expand Up @@ -43,13 +43,13 @@
"author": {
"name": "Kamil Mielnik",
"email": "[email protected]",
"url": "http://kamilmielnik.com/"
"url": "https://kamilmielnik.com/"
},
"license": "CC BY-NC-ND 4.0",
"bugs": {
"url": "https://github.com/kamilmielnik/cv/issues"
},
"homepage": "http://cv.kamilmielnik.com",
"homepage": "https://cv.kamilmielnik.com",
"dependencies": {
"classnames": "^2.2.6",
"normalize.css": "^8.0.1",
Expand Down
4 changes: 2 additions & 2 deletions src/data/contact-info.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const contactInfo: ContactInfoData[] = [
},
{
label: 'Website',
url: 'http://kamilmielnik.com',
value: 'http://kamilmielnik.com'
url: 'https://kamilmielnik.com',
value: 'https://kamilmielnik.com'
}
];

Expand Down

0 comments on commit 4af1fe5

Please sign in to comment.