Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
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
59 changes: 0 additions & 59 deletions .dockerignore

This file was deleted.

50 changes: 50 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
name: Deploy to GitHub Pages

on:
push:
branches: [main]
workflow_dispatch:

permissions:
contents: read
pages: write
id-token: write

concurrency:
group: pages
cancel-in-progress: false

jobs:
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: frontend/package-lock.json

- run: npm ci

- run: npm run build
env:
NEXT_PUBLIC_BASE_PATH: /${{ github.event.repository.name }}

- uses: actions/upload-pages-artifact@v3
with:
path: frontend/out

deploy:
needs: build
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- id: deployment
uses: actions/deploy-pages@v4
27 changes: 27 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Test

on:
pull_request:
branches: [main]
push:
branches: [main]

jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./frontend
steps:
- uses: actions/checkout@v4

- uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
cache-dependency-path: frontend/package-lock.json

- run: npm ci
- run: npx vitest run
- run: npm run lint
- run: npm run build
38 changes: 7 additions & 31 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,42 +1,18 @@
# IDE
.idea

# Python
__pycache__/
*.py[cod]
*$py.class
*.so
.Python
*.egg-info/
dist/
build/

# Virtual environment
venv/
.venv/
env/

# Test output
test_output.json
.coverage
.pytest_cache/
htmlcov/

# OS
.DS_Store
Thumbs.db

# Node
node_modules/
.next/
out/

# Temp files
*.1.json
.mcp.json
1740.json
# OS
.DS_Store
Thumbs.db

1740converted.json
# Project
.mcp.json
.claude
.serena

1740.json
1740converted.json
192 changes: 0 additions & 192 deletions DEPLOY.md

This file was deleted.

Loading
Loading