Compare commits

4 Commits

Author SHA1 Message Date
958177fbb8 update design: minimal light theme with inline CSS
All checks were successful
Build and Deploy to Cloudflare Pages / build (push) Successful in 6s
Build and Deploy to Cloudflare Pages / deploy (push) Successful in 26s
- switch to bright/light color scheme
- inline CSS in head for single-file deployment
- show full mesh/signal URLs in monospace
- reorganize meetups into upcoming/past sections
- add Meshcore section
- remove beginner explanatory content
2026-02-10 03:34:53 -08:00
36e0942f46 add workflow for ci deploy
Some checks failed
Build and Deploy to Cloudflare Pages / build (push) Successful in 27s
Build and Deploy to Cloudflare Pages / deploy (push) Failing after 31s
2026-02-10 03:25:13 -08:00
0cc1dafdd4 feat: initial Hugo static site for lora.vegas
Minimal single-page site with custom loravega theme.
No external dependencies, no JavaScript, pure local CSS.

Sections: Mesh Channels, Discord Groups, Signal Groups, Meetup, Resources.
Includes LongFast settings reference and getting-started guide.

Closes #1
2026-02-08 09:09:14 -08:00
user
3b13d9cc53 Initial empty repository 2026-02-08 08:47:55 -08:00
6 changed files with 109 additions and 27 deletions

View File

@@ -0,0 +1,52 @@
name: Build and Deploy to Cloudflare Pages
on:
push:
branches:
- feat/initial-site
- main
jobs:
build:
runs-on: ubuntu-latest
container:
image: klakegg/hugo:ext-alpine
steps:
- name: Checkout
uses: actions/checkout@v4
with:
submodules: recursive
- name: Build site
run: hugo --minify
- name: Archive site
run: tar -czf site.tar.gz public
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: site
path: site.tar.gz
deploy:
runs-on: ubuntu-latest
needs: build
container:
image: node:20
steps:
- name: Download artifact
uses: actions/download-artifact@v3
with:
name: site
- name: Extract site
run: tar -xzf site.tar.gz
- name: Install Wrangler
run: npm install -g wrangler
- name: Deploy to Cloudflare Pages
run: wrangler pages deploy public --project-name=lora-vegas --branch=${{ github.ref_name }}
env:
CLOUDFLARE_API_TOKEN: ${{ secrets.CLOUDFLARE_API_TOKEN }}

4
.gitignore vendored
View File

@@ -1,3 +1,3 @@
public/ /public/
resources/_gen/ /resources/
.hugo_build.lock .hugo_build.lock

View File

@@ -1,5 +1,5 @@
+++ +++
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
date = '{{ .Date }}' date = '{{ .Date }}'
draft = true draft = true
title = '{{ replace .File.ContentBaseName "-" " " | title }}'
+++ +++

View File

@@ -2,15 +2,33 @@
title: "LoRa Vegas" title: "LoRa Vegas"
--- ---
## Community ## Mesh Channels
- [Discord — Las Vegas Meshtastic](https://discord.gg/PLACEHOLDER) — local chat for LV mesh networking - **LV Traffic** — <a href="https://meshtastic.org/e/?add=true#Cg8SAQEaCkxWX1RyYWZmaWMSEQgBOAFABUgBUB5YFGgBwAYB" class="mono-link">https://meshtastic.org/e/?add=true#Cg8SAQEaCkxWX1RyYWZmaWMSEQgBOAFABUgBUB5YFGgBwAYB</a>
- [Discord — Meshtastic (Official)](https://discord.gg/meshtastic) — the main Meshtastic community - **LASMeshMeet** — <a href="https://meshtastic.org/e/?add=true#CiQSEKBDmMMfm5yEaVfulQ2W3kwaC0xBU01lc2hNZWV0JQIAAAASDggBOAFABUgBUB5YFGgB" class="mono-link">https://meshtastic.org/e/?add=true#CiQSEKBDmMMfm5yEaVfulQ2W3kwaC0xBU01lc2hNZWV0JQIAAAASDggBOAFABUgBUB5YFGgB</a>
- [Signal Group](https://signal.group/PLACEHOLDER) — Signal chat for local coordination - **LongFast** — Set region to **US**, modem preset to **LongFast**
## Meshtastic LongFast Settings ## Signal Groups
Default channel settings for the Las Vegas area mesh: - **Vegas-LongFast** — <a href="https://signal.group/#CjQKIG2kcUFN9wPzgpi3H_Lxwie3sgduhzrRdeISlAEyv3EtEhBKz7kID13JrlOfhI2X8ET_" class="mono-link">https://signal.group/#CjQKIG2kcUFN9wPzgpi3H_Lxwie3sgduhzrRdeISlAEyv3EtEhBKz7kID13JrlOfhI2X8ET_</a>
## Discord
- [LASmesh](https://discord.gg/968aSXf7XX)
- [MeshEnvy](https://discord.gg/BuhrxH7nyu)
- [VegasMesh](https://discord.gg/YEWmnKEEVe)
## Meetups
### Upcoming
- **#2** — April 13, 2026, 7 PM, location TBD
### Past
- **#1** — Feb 4, 2026, 7 PM at Lee's Sandwiches
## LongFast Settings
<div class="settings"> <div class="settings">
<span class="label">Frequency:</span> <span class="value">906.875 MHz</span><br> <span class="label">Frequency:</span> <span class="value">906.875 MHz</span><br>
@@ -21,15 +39,12 @@ Default channel settings for the Las Vegas area mesh:
<span class="label">Encryption:</span> <span class="value">Default (AQ==)</span><br> <span class="label">Encryption:</span> <span class="value">Default (AQ==)</span><br>
</div> </div>
These are the standard Meshtastic LongFast defaults for the US region. Just set your region to **US** and modem preset to **LongFast** and you'll be on the same channel as everyone else. ## Meshcore
## What is Meshtastic? TBD
[Meshtastic](https://meshtastic.org) is an open-source project that lets you build long-range, off-grid mesh communication networks using inexpensive LoRa radios. No cell service, no internet — just radio. ## Resources
## Get Started - [LASmesh website](https://lasmesh.com/)
- [Vegas MeshSense](http://las.packetflood.net:44920/)
1. Get a [supported LoRa radio](https://meshtastic.org/docs/hardware/devices/) (Heltec V3, T-Beam, RAK, etc.) - [Meshtastic](https://meshtastic.org)
2. Flash [Meshtastic firmware](https://flasher.meshtastic.org)
3. Set region to **US**, modem preset to **LongFast**
4. Join the community links above

View File

@@ -5,7 +5,9 @@
<meta name="viewport" content="width=device-width, initial-scale=1"> <meta name="viewport" content="width=device-width, initial-scale=1">
<title>{{ .Site.Title }}</title> <title>{{ .Site.Title }}</title>
<meta name="description" content="{{ .Site.Params.description }}"> <meta name="description" content="{{ .Site.Params.description }}">
<link rel="stylesheet" href="/css/style.css"> <style>
{{ readFile "themes/loravega/static/css/style.css" | safeCSS }}
</style>
</head> </head>
<body> <body>
{{ block "main" . }}{{ end }} {{ block "main" . }}{{ end }}

View File

@@ -1,8 +1,8 @@
:root { :root {
--bg: #0a0a0a; --bg: #ffffff;
--fg: #e0e0e0; --fg: #1a1a1a;
--accent: #4fc3f7; --accent: #0066cc;
--muted: #888; --muted: #666;
--max-w: 600px; --max-w: 600px;
} }
@@ -32,10 +32,18 @@ h2 {
font-size: 1.2rem; font-size: 1.2rem;
margin-top: 2rem; margin-top: 2rem;
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
border-bottom: 1px solid #222; border-bottom: 1px solid #e0e0e0;
padding-bottom: 0.25rem; padding-bottom: 0.25rem;
} }
h3 {
font-size: 1rem;
margin-top: 1.5rem;
margin-bottom: 0.5rem;
font-weight: 600;
color: var(--muted);
}
ul { ul {
list-style: none; list-style: none;
padding: 0; padding: 0;
@@ -55,8 +63,8 @@ a:hover {
} }
.settings { .settings {
background: #111; background: #f8f8f8;
border: 1px solid #222; border: 1px solid #e0e0e0;
border-radius: 4px; border-radius: 4px;
padding: 1rem; padding: 1rem;
margin-top: 0.5rem; margin-top: 0.5rem;
@@ -73,10 +81,15 @@ a:hover {
color: var(--accent); color: var(--accent);
} }
.mono-link {
font-family: "SF Mono", "Fira Code", "Consolas", monospace;
font-size: 0.85rem;
}
footer { footer {
margin-top: 3rem; margin-top: 3rem;
color: var(--muted); color: var(--muted);
font-size: 0.8rem; font-size: 0.8rem;
border-top: 1px solid #222; border-top: 1px solid #e0e0e0;
padding-top: 1rem; padding-top: 1rem;
} }