Skip to content
Open
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
41 changes: 41 additions & 0 deletions .github/workflows/deploy-docs.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
name: Deploy API Docs to GitHub Pages

on:
push:
branches:
- main
- N3_JP
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Same as the user service PR — N3_JP branch is still in the trigger list. Remove before merging.

Copy link
Copy Markdown
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

yes will remove before merging

paths:
- 'docs/**'
workflow_dispatch:

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

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

jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Setup Pages
uses: actions/configure-pages@v4

- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: 'docs'

- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,10 @@ dist/
# === AWS / CLI ===
.aws/

# === Firebase Service Account Keys (never commit credentials) ===
firebase-service-account*.json
**/firebase-service-account*.json

# === Logs ===
*.log

Expand All @@ -126,4 +130,4 @@ marimo/_lsp/
__marimo__/

# === Docker Volumes
volume/
volume/
3 changes: 0 additions & 3 deletions Notification/dependencies/python/requirements.txt

This file was deleted.

134 changes: 0 additions & 134 deletions Notification/dependencies/python/user_fridge_notifications_api.py

This file was deleted.

131 changes: 0 additions & 131 deletions Notification/dependencies/python/user_fridge_notifications_model.py

This file was deleted.

44 changes: 0 additions & 44 deletions Notification/events/get_notification.json

This file was deleted.

Loading
Loading