Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
c57d194
feat!: monorepo landing page
samfreund Apr 9, 2025
b590cc4
ugh linting
samfreund Apr 9, 2025
950bd5e
add fonts and videos to styleguide ignore
samfreund Apr 9, 2025
a84da24
format everything
samfreund Apr 9, 2025
855b3e0
remove videos 2, electric boogaloo
samfreund Apr 9, 2025
9c32b1a
I think that does it
samfreund Apr 9, 2025
2de1b2a
acutally, I don't think we need that
samfreund Apr 9, 2025
01f1a1a
Merge branch 'PhotonVision:main' into monorepo-website
samfreund Apr 9, 2025
7e501bd
remove port variable
samfreund Apr 9, 2025
26ea57b
update to use extant secrets
samfreund Apr 9, 2025
dcb6a71
remove user
samfreund Apr 9, 2025
1adc177
Update website.yml
samfreund Apr 10, 2025
dc9891b
Update website.yml
samfreund Apr 10, 2025
96d6b0f
update workflow
samfreund Apr 10, 2025
8be70ef
Update website.yml
samfreund Apr 10, 2025
e35bc6b
remove fonts and stuff from styleguide, add back later
samfreund Apr 10, 2025
177a7dc
monorepo
samfreund Apr 10, 2025
9961278
Merge branch 'monorepo-website' of github.com:samfreund/photonvision …
samfreund Apr 10, 2025
42d0b10
styleguide
samfreund Apr 10, 2025
b9906d0
Merge branch 'main' into monorepo-website
samfreund Apr 10, 2025
fdbdbbe
Update website.yml
samfreund Apr 10, 2025
0f1fc22
linterrrrrr
samfreund Apr 10, 2025
2528680
Merge branch 'monorepo-website' of github.com:samfreund/photonvision …
samfreund Apr 10, 2025
6a6c3e1
update in-action video
samfreund Apr 10, 2025
6c43d4a
alright, that's it
samfreund Apr 10, 2025
53ef498
Update main.css
samfreund Apr 11, 2025
3200408
lint
samfreund Apr 11, 2025
4facf63
Merge branch 'monorepo-website' of github.com:samfreund/photonvision …
samfreund Apr 11, 2025
3cf111b
oops, forgot to add those
samfreund Apr 11, 2025
2fd4fa5
Merge branch 'main' into monorepo-website
samfreund Apr 11, 2025
08f6c08
Update website.yml
samfreund Apr 11, 2025
fb73757
Update website.yml
samfreund Apr 11, 2025
5ec2847
Update website.yml
samfreund Apr 11, 2025
3ea421c
Update website.yml
samfreund Apr 11, 2025
0b9606f
Update website.yml
samfreund Apr 11, 2025
cb8e3dc
format
samfreund Apr 11, 2025
f90fd19
update gitignore
samfreund Apr 11, 2025
8b67de6
Update .gitignore
samfreund Apr 11, 2025
7957c8f
add prettier ignore
samfreund Apr 11, 2025
414fdca
lint
samfreund Apr 11, 2025
a6b9c5b
delete main.ts
samfreund Apr 11, 2025
0f71401
that fixed it
samfreund Apr 11, 2025
b87fe29
gold told me to, so I did
samfreund Apr 11, 2025
47eb636
Fix prettierignore
Gold856 Apr 11, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions .github/workflows/website.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,11 @@ on:
push:
# For now, run on all commits to main
branches: [ main ]
# and also all tags starting with v
tags:
- 'v*'
pull_request:
branches: [ main ]
merge_group:

jobs:
rsync:
Expand All @@ -17,12 +19,29 @@ jobs:
uses: actions/setup-node@v4
- name: Install packages
run: npm ci
working-directory: website
- name: Build project
run: npm run build
working-directory: website
- uses: up9cloud/[email protected]
if: github.ref == 'refs/heads/main'
env:
HOST: ${{ secrets.WEBMASTER_SSH_HOST }}
USER: ${{ secrets.WEBMASTER_SSH_USERNAME }}
KEY: ${{secrets.WEBMASTER_SSH_KEY}}
SOURCE: /website/dist/*
SOURCE: website/dist/*
TARGET: /var/www/html/photonvision-website

format-check:
name: Check formatting
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
- name: Install packages
run: npm ci
working-directory: website
- name: Build project
run: npx prettier -c .
working-directory: website
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -151,3 +151,6 @@ venv
.venv/*
.venv
networktables.json

website/node_modules
website/dist
1 change: 1 addition & 0 deletions website/.prettierignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
*.min.css
4 changes: 2 additions & 2 deletions website/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion website/src/main.ts
100755 → 100644
Original file line number Diff line number Diff line change
@@ -1 +1 @@

// We don't use javascript, so this is empty
Loading