Compare commits
3 Commits
4d78da3eb0
...
c255fefb22
Author | SHA1 | Date | |
---|---|---|---|
c255fefb22 | |||
c10f93f556 | |||
c48b2adef9 |
20
.drone.yml
Normal file
20
.drone.yml
Normal file
@ -0,0 +1,20 @@
|
||||
---
|
||||
kind: pipeline
|
||||
type: docker
|
||||
name: default
|
||||
|
||||
steps:
|
||||
- name: build
|
||||
image: fedora:39
|
||||
commands:
|
||||
- yum install --assumeyes openssh
|
||||
- sh deploy.sh
|
||||
environment:
|
||||
HOST:
|
||||
from_secret: HOST
|
||||
SSH_KEY:
|
||||
from_secret: SSH_KEY
|
||||
|
||||
trigger:
|
||||
branch:
|
||||
- main
|
10
deploy.sh
Executable file
10
deploy.sh
Executable file
@ -0,0 +1,10 @@
|
||||
#!/bin/bash
|
||||
|
||||
set -e
|
||||
|
||||
echo $SSH_KEY | base64 -d >> /tmp/key
|
||||
chmod -R 0600 /tmp/key
|
||||
|
||||
ssh -i /tmp/key -o StrictHostKeyChecking=no $HOST "cd /home/lizzy/mistymountains && git pull && git reset --hard origin/master && npm run build && sudo systemctl restart mmt"
|
||||
|
||||
rm /tmp/key
|
@ -6,18 +6,9 @@
|
||||
<div class="d-flex flex-row align-items-center border-darkish p-1">
|
||||
<i class="bi bi-telephone"></i>
|
||||
<div class="px-4">
|
||||
<div class="border-darkish">
|
||||
<a href="tel:12084994517">
|
||||
<span>(208) 499 - 4517</span>
|
||||
(Scheduling/Other)
|
||||
</a>
|
||||
</div>
|
||||
<div>
|
||||
<a href="tel:18334456077">
|
||||
<span>(833) 445 - 6077 ext. 1</span>
|
||||
(Billing/Insurance)
|
||||
</a>
|
||||
</div>
|
||||
<a href="tel:12084994517">
|
||||
<span>(208) 499 - 4517</span>
|
||||
</a>
|
||||
</div>
|
||||
</div>
|
||||
<div class="d-flex flex-row align-items-center border-darkish p-1">
|
||||
|
@ -85,19 +85,17 @@
|
||||
</p>
|
||||
</div>
|
||||
<div class="border shadow bg-light py-2 col-lg-2 d-flex align-items-center flex-column m-2">
|
||||
<h1><i class="bi bi-phone-fill"></i></h1>
|
||||
<div><h1><i class="bi bi-phone-fill"></i></h1></div>
|
||||
<p style="hyphens: auto;">
|
||||
For scheduling and other: <a href="tel:12084994517">(208) 499 - 4517</a>
|
||||
<br>
|
||||
For billing and insurance: <a href="tel:18334456077">(833) 445 - 6077 ext. 1</a>
|
||||
</p>
|
||||
</div>
|
||||
<div class="border shadow bg-light py-2 col-lg-2 d-flex align-items-center flex-column m-2">
|
||||
<h1><i class="bi bi-envelope-fill"></i></h1>
|
||||
<p style="hyphens: auto;">
|
||||
For scheduling and other: <a href="mailto:lizmmt22@gmail.com">lizmmt22@gmail.com</a>
|
||||
For billing: <a href="mailto:billing@mistymountainstherapy.com">billing@mistymountainstherapy.com</a>
|
||||
<br>
|
||||
Questions about MMT: <a href="mailto:jeffer@mistymountainsthreapy.com">jeffer@mistymountainstherapy.com</a>
|
||||
For other questions: <a href="mailto:jeffer@mistymountainsthreapy.com">jeffer@mistymountainstherapy.com</a>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
|
Loading…
Reference in New Issue
Block a user