Update drone.
continuous-integration/drone/push Build is passing
Details
continuous-integration/drone/push Build is passing
Details
This commit is contained in:
parent
ce1167291e
commit
487c4e1041
|
@ -39,9 +39,9 @@ steps:
|
|||
from_secret: ssh_user
|
||||
key:
|
||||
from_secret: ssh_key
|
||||
target: /var/www/portfolio/frontend/${DRONE_COMMIT_SHA:0:10}/
|
||||
target: /var/www/portfolio/${DRONE_COMMIT_SHA:0:10}/
|
||||
source: /drone/src/development/resources/public/*
|
||||
strip_components: 4
|
||||
strip_components: 5
|
||||
|
||||
- name: promote-deployed-site
|
||||
pull: True
|
||||
|
|
2
deps.edn
2
deps.edn
|
@ -4,6 +4,8 @@
|
|||
:extra-deps {org.clojure/clojure {:mvn/version "1.10.3"}
|
||||
org.clojure/tools.deps.alpha {:mvn/version "0.12.1003"}
|
||||
|
||||
cljs-ajax/cljs-ajax {:mvn/version "0.8.1"}
|
||||
|
||||
;; dev libraries
|
||||
thheller/shadow-cljs {:mvn/version "2.25.2"}
|
||||
refactor-nrepl/refactor-nrepl {:mvn/version "3.9.0"}
|
||||
|
|
|
@ -1,31 +1,60 @@
|
|||
<!DOCTYPE html>
|
||||
<html>
|
||||
|
||||
<head>
|
||||
<head>
|
||||
<title>Static Sites development</title>
|
||||
<meta charset="utf-8" />
|
||||
|
||||
<meta content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" name="viewport" />
|
||||
<link href="https://garden.digitaloctave.com/icons/favicon.ico" rel="icon" type="image/png" />
|
||||
<link href="https://garden.digitaloctave.com/icons/apple-touch-icon.png" rel="apple-touch-icon" sizes="180x180" />
|
||||
<link href="https://garden.digitaloctave.com/icons/favicon-32x32.png" rel="icon" sizes="32x32" type="image/png" />
|
||||
<link href="https://garden.digitaloctave.com/icons/favicon-16x16.png" rel="icon" sizes="16x16" type="image/png" />
|
||||
<meta
|
||||
content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no"
|
||||
name="viewport"
|
||||
/>
|
||||
<link
|
||||
href="https://garden.digitaloctave.com/icons/favicon.ico"
|
||||
rel="icon"
|
||||
type="image/png"
|
||||
/>
|
||||
<link
|
||||
href="https://garden.digitaloctave.com/icons/apple-touch-icon.png"
|
||||
rel="apple-touch-icon"
|
||||
sizes="180x180"
|
||||
/>
|
||||
<link
|
||||
href="https://garden.digitaloctave.com/icons/favicon-32x32.png"
|
||||
rel="icon"
|
||||
sizes="32x32"
|
||||
type="image/png"
|
||||
/>
|
||||
<link
|
||||
href="https://garden.digitaloctave.com/icons/favicon-16x16.png"
|
||||
rel="icon"
|
||||
sizes="16x16"
|
||||
type="image/png"
|
||||
/>
|
||||
<link href="/manifest.json" rel="manifest" />
|
||||
<link color="#5bbad5" href="https://garden.digitaloctave.com/icons/safari-pinned-tab.svg" rel="mask-icon" />
|
||||
<link
|
||||
color="#5bbad5"
|
||||
href="https://garden.digitaloctave.com/icons/safari-pinned-tab.svg"
|
||||
rel="mask-icon"
|
||||
/>
|
||||
<meta content="#da532c" name="msapplication-TileColor" />
|
||||
<meta content="#ffffff" name="theme-color" />
|
||||
<link href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css" rel="stylesheet" type="text/css" />
|
||||
<link href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css" rel="stylesheet" type="text/css" />
|
||||
<link
|
||||
href="https://cdn.jsdelivr.net/gh/devicons/devicon@v2.15.1/devicon.min.css"
|
||||
rel="stylesheet"
|
||||
type="text/css"
|
||||
/>
|
||||
<link
|
||||
href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.1.1/css/all.min.css"
|
||||
rel="stylesheet"
|
||||
type="text/css"
|
||||
/>
|
||||
<link rel="stylesheet" href="./css/styles.css" type="text/css" />
|
||||
<meta content="DO Plant DB & Garden Design" property="og:title" />
|
||||
<meta content="example description" property="og:description" />
|
||||
</head>
|
||||
|
||||
</head>
|
||||
|
||||
<body >
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
<script src="./cljs-out/base.js" type="application/javascript"></script>
|
||||
<script src="./cljs-out/portfolio.js" type="application/javascript"></script>
|
||||
</body>
|
||||
|
||||
</body>
|
||||
</html>
|
||||
|
|
Loading…
Reference in New Issue