summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBenjamin Sanders <ben@Benjamins-MacBook-Pro.local>2025-10-16 18:50:02 -0400
committerBenjamin Sanders <ben@Benjamins-MacBook-Pro.local>2025-10-16 18:50:02 -0400
commit5633dd01c8e5ef2c48d2d11fb92ee5549ed12739 (patch)
tree828a996ed73449379afd58c1e3736dfd3c62d091
parent1ccc6f5a5eaa69496c6c2abdd3e1cf13206e6f1a (diff)
removed GEMFILE from site
-rw-r--r--_site/GEMFILE15
-rw-r--r--deploy-site.sh16
2 files changed, 16 insertions, 15 deletions
diff --git a/_site/GEMFILE b/_site/GEMFILE
deleted file mode 100644
index 5d0a841..0000000
--- a/_site/GEMFILE
+++ /dev/null
@@ -1,15 +0,0 @@
-source "https://rubygems.org"
-
-# Specify Jekyll version (latest stable as of mid-2025 is ~4.3.x)
-gem "jekyll", "~> 4.3"
-
-# Plugins
-gem "jekyll-seo-tag"
-gem "jekyll-sitemap"
-gem "jekyll-feed"
-
-# If you are developing a custom theme locally, add:
-# gem "my-theme", path: "./my-theme"
-
-# For deployment on GitHub Pages (if using it), replace the above with:
-# gem "github-pages", group: :jekyll_plugins
diff --git a/deploy-site.sh b/deploy-site.sh
new file mode 100644
index 0000000..d039515
--- /dev/null
+++ b/deploy-site.sh
@@ -0,0 +1,16 @@
+#!/bin/bash
+
+JEKYLL_DIR="/_site"
+DEPLOY_USER="sanderstggrp"
+DEPLOY_HOST="64.42.181.202"
+DEPLOY_PORT="22"
+DEPLOY_PATH="/home/sanderstggrp/web/sanderstechnologygroup.com/public_html"
+
+# cd "$JEKYLL_DIR"
+# bundle exec jekyll build
+
+rsync -avz --delete -e "ssh -p $DEPLOY_PORT" \
+ _site/ \
+ $DEPLOY_USER@$DEPLOY_HOST:$DEPLOY_PATH
+
+echo "Deployment complete." \ No newline at end of file