Compare commits
12 commits
49b7a59c05
...
318a1eaecd
Author | SHA1 | Date | |
---|---|---|---|
|
318a1eaecd | ||
|
9303b7bab5 | ||
|
a65e129f63 | ||
|
593ea443fa | ||
|
9cd2bc7fbc | ||
|
3541364810 | ||
|
64782f98af | ||
|
2b84bba85f | ||
|
8357cb5376 | ||
|
483ff3324c | ||
|
d4763aaa18 | ||
|
23103f5931 |
3 changed files with 24 additions and 1 deletions
22
.drone.yml
22
.drone.yml
|
@ -27,8 +27,20 @@ trigger:
|
||||||
- master
|
- master
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: generate-thumbnails
|
||||||
|
image: zavolab/imagemagick:6.9.10
|
||||||
|
volumes:
|
||||||
|
- name: thumbnails
|
||||||
|
path: /drone/src/images/thumbnails
|
||||||
|
commands:
|
||||||
|
- pwd
|
||||||
|
- ls -la
|
||||||
|
- ./scripts/process-images.sh
|
||||||
- name: deploy
|
- name: deploy
|
||||||
image: drillster/drone-rsync
|
image: drillster/drone-rsync
|
||||||
|
volumes:
|
||||||
|
- name: thumbnails
|
||||||
|
path: /drone/src/images/thumbnails
|
||||||
settings:
|
settings:
|
||||||
hosts:
|
hosts:
|
||||||
- jshaver.net
|
- jshaver.net
|
||||||
|
@ -54,8 +66,18 @@ trigger:
|
||||||
- push
|
- push
|
||||||
|
|
||||||
steps:
|
steps:
|
||||||
|
- name: generate-thumbnails
|
||||||
|
image: zavolab/imagemagick:6.9.10
|
||||||
|
volumes:
|
||||||
|
- name: thumbnails
|
||||||
|
path: /drone/src/images/thumbnails
|
||||||
|
commands:
|
||||||
|
- ./scripts/process-images.sh
|
||||||
- name: deploy
|
- name: deploy
|
||||||
image: drillster/drone-rsync
|
image: drillster/drone-rsync
|
||||||
|
volumes:
|
||||||
|
- name: thumbnails
|
||||||
|
path: /drone/src/images/thumbnails
|
||||||
settings:
|
settings:
|
||||||
hosts:
|
hosts:
|
||||||
- jshaver.net
|
- jshaver.net
|
||||||
|
|
|
@ -66,7 +66,6 @@
|
||||||
course data and then compared with skills job postings data for
|
course data and then compared with skills job postings data for
|
||||||
relevant occupations.</p>
|
relevant occupations.</p>
|
||||||
<h4>My Contributions</h4>
|
<h4>My Contributions</h4>
|
||||||
|
|
||||||
<p>I worked on a 2-3 man team to build a prototype using netlify. We then
|
<p>I worked on a 2-3 man team to build a prototype using netlify. We then
|
||||||
itterated on it in 3 phases. The prototype was successful enough
|
itterated on it in 3 phases. The prototype was successful enough
|
||||||
that customers requested to pay to use it (although it chock full
|
that customers requested to pay to use it (although it chock full
|
||||||
|
|
|
@ -3,6 +3,8 @@
|
||||||
IMAGES_DIR="./images"
|
IMAGES_DIR="./images"
|
||||||
WIDTH=320
|
WIDTH=320
|
||||||
|
|
||||||
|
mkdir -p ./images/thumbnails
|
||||||
|
|
||||||
for f in ./images/*
|
for f in ./images/*
|
||||||
do
|
do
|
||||||
case "$f" in
|
case "$f" in
|
||||||
|
|
Loading…
Reference in a new issue