Skip to content

Commit 75753ff

Browse files
committed
Add deploy script
Change http resource to load via https
1 parent 89cd0ef commit 75753ff

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,8 @@
55
"staging": "cross-env NODE_ENV=staging node_modules/webpack/bin/webpack.js --progress --hide-modules --env=staging --config=node_modules/laravel-mix/setup/webpack.config.js",
66
"production": "cross-env NODE_ENV=production node_modules/webpack/bin/webpack.js --progress --hide-modules --env=production --config=node_modules/laravel-mix/setup/webpack.config.js",
77
"dev": "npm run local",
8-
"watch": "npm run local -- --watch"
8+
"watch": "npm run local -- --watch",
9+
"deploy": "npm run production && git add build_production && git commit -m \"Build for deploy\" && git subtree push --prefix build_production origin gh-pages"
910
},
1011
"devDependencies": {
1112
"browser-sync": "^2.24.6",

source/index.blade.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
<div class="uppercase tracking-wide text-sm text-grey-dark font-bold">A project by</div>
3434
<div class="mt-6 -mx-8 lg:-mx-16 flex flex-row flex-wrap items-center">
3535
<div class="flex flex-col mx-8 lg:mx-16 w-32 items-center">
36-
<img src="http://res.cloudinary.com/dwpkvglev/image/upload/c_crop,g_auto:face,w_1609/v1532871661/martbock.jpg" class="w-16 h-16 bg-grey-lighter rounded-full"/>
36+
<img src="https://res.cloudinary.com/dwpkvglev/image/upload/c_crop,g_auto:face,w_1609/v1532871661/martbock.jpg" class="w-16 h-16 bg-grey-lighter rounded-full"/>
3737
<div class="mt-4">
3838
Martin Bock
3939
</div>

0 commit comments

Comments
 (0)