Compare commits

..

13 Commits

Author SHA1 Message Date
benny
0556f39855 Update .gitea/workflows/deploy.yml
All checks were successful
Deploy / deploy (push) Successful in 3s
2026-04-23 19:51:40 +00:00
benny
1612c31366 Update .gitea/workflows/deploy.yml
Some checks failed
Deploy / deploy (push) Failing after 2s
2026-04-23 19:50:18 +00:00
benny
8581df95f0 Update .gitea/workflows/deploy.yml
Some checks failed
Deploy / deploy (push) Failing after 1s
2026-04-23 19:36:38 +00:00
benny
070ab369bb Update .gitea/workflows/deploy.yml
Some checks failed
Deploy / deploy (push) Failing after 0s
2026-04-23 19:32:36 +00:00
Benny
12f61d2bb2 Deploy.yml edited 2026-04-23 14:30:16 -05:00
Benny
d497a8be64 Index edited
Some checks failed
Deploy / deploy (push) Failing after 0s
2026-04-23 14:24:16 -05:00
Benny
44e6b7737f Index edited
Some checks failed
Deploy / deploy (push) Failing after 0s
2026-04-23 14:09:17 -05:00
Benny
fe60feb7ca Deploy.yml edited
Some checks failed
Deploy / deploy (push) Failing after 0s
2026-04-23 13:58:58 -05:00
benny
6c7c7aa3b6 Update .gitea/workflows/deploy.yml
Some checks failed
Deploy / deploy (push) Failing after 0s
2026-04-23 18:56:59 +00:00
Benny
5b4ffe7053 Made Edits
Some checks failed
Deploy / deploy (push) Failing after 0s
2026-04-23 13:54:44 -05:00
benny
72851a46f8 Add .gitea/workflows/deploy.yml
Some checks failed
Deploy / deploy (push) Failing after 0s
2026-04-23 18:45:52 +00:00
Benny
b7f8ccf2e9 QoL Update 2026-04-23 13:29:18 -05:00
benny
af09d72733 Update README.md 2025-11-20 16:01:03 +00:00
3238 changed files with 93 additions and 76 deletions

View File

@@ -0,0 +1,23 @@
name: Deploy
on:
push:
branches:
- main
jobs:
deploy:
runs-on: benny-vps
steps:
- name: Pull latest code
run: |
cd /var/www/bennysblog
git pull origin main
- name: Install Python dependencies
run: |
cd /var/www/bennysblog
/var/www/bennysblog/bennyshouse/bin/pip3 install -q -r requirements.txt
- name: Restart service
run: sudo systemctl restart benny

1
.gitignore vendored
View File

@@ -20,5 +20,6 @@ instance/
*.swp *.swp
bennysblog/ bennysblog/
benny/
venv/ venv/
__pycache__/ __pycache__/

View File

@@ -2,10 +2,4 @@
My Business Website My Business Website
Hai :3 Benny's House is the backbone of all my business ventures.
How r u
I miss you! So big bnner style!
Huge nutssaclk

Binary file not shown.

Binary file not shown.

8
app.py
View File

@@ -9,10 +9,10 @@ app.secret_key = os.getenv("APP_SECRET_KEY", "dev")
CONTACT = { CONTACT = {
"name": os.getenv("BH_CONTACT_NAME", "Benjamin Mosley"), "name": os.getenv("BH_CONTACT_NAME", "Benjamin Mosley"),
"title": os.getenv("BH_CONTACT_TITLE", "E-Commerce Manager, United Supermarkets"), "title": os.getenv("BH_CONTACT_TITLE", "Owner, Benny's House"),
"email": os.getenv("BH_CONTACT_EMAIL", "ben@bennyshouse.net"), "email": os.getenv("BH_CONTACT_EMAIL", "ben@bennyshouse.net"),
"phone": os.getenv("BH_CONTACT_PHONE", "(806) 655 2300"), "phone": os.getenv("BH_CONTACT_PHONE", "Email to request phone number"),
"city": os.getenv("BH_CONTACT_CITY", "Canyon / Amarillo / Borger / Remote"), "city": os.getenv("BH_CONTACT_CITY", "Greater Amarillo Area"),
"cal": os.getenv("BH_CONTACT_CAL", "https://calendly.com/bennyshouse24/30min"), "cal": os.getenv("BH_CONTACT_CAL", "https://calendly.com/bennyshouse24/30min"),
"link": os.getenv("BH_CONTACT_LINK", "https://www.linkedin.com/in/benjamin-mosley-849643329/"), "link": os.getenv("BH_CONTACT_LINK", "https://www.linkedin.com/in/benjamin-mosley-849643329/"),
"site": os.getenv("BH_CONTACT_SITE", "https://bennyshouse.net"), "site": os.getenv("BH_CONTACT_SITE", "https://bennyshouse.net"),
@@ -20,7 +20,7 @@ CONTACT = {
} }
BRAND = "Bennys House" BRAND = "Bennys House"
TAGLINE = "Fast to prototype. Safe to scale." TAGLINE = "Local tech help, done right."
@app.route("/") @app.route("/")
def home(): def home():

Some files were not shown because too many files have changed in this diff Show More