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
30 changes: 2 additions & 28 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@
# 既存設定は open-pull-requests-limit: 0 でバージョン更新を止めていた。
# PR が乱立するのを避けるための措置だったが、minor/patch をグループ化すれば
# 本数は抑えられるため、上限を設けたうえで更新を再開する。
# 今回あらたに対象へ追加するエコシステム: github-actions, pip
# 対象: pip(ルートの requirements.txt)と github-actions。
# web/ はビルドの無い静的ファイルになったため npm の対象から外した。
#
# 方針: minor/patch はグループ化して 1 PR にまとめ、major は個別 PR で判断する。
# リリース直後の不具合や yank を踏まないよう cooldown で寝かせてから PR を出す。
Expand Down Expand Up @@ -39,33 +40,6 @@ updates:
- "minor"
- "patch"

# ---------------------------------------------------------------------------
# npm
# ---------------------------------------------------------------------------
- package-ecosystem: "npm"
directory: "/web"
schedule:
interval: "weekly"
day: "monday"
time: "09:00"
timezone: "Asia/Tokyo"
open-pull-requests-limit: 5
labels:
- "dependencies"
- "javascript"
commit-message:
prefix: "chore(deps)"
cooldown:
default-days: 7
semver-major-days: 30
groups:
npm-minor-patch:
patterns:
- "*"
update-types:
- "minor"
- "patch"

# ---------------------------------------------------------------------------
# GitHub Actions (.github/workflows)
# ---------------------------------------------------------------------------
Expand Down
55 changes: 0 additions & 55 deletions .github/workflows/gh-pages.yml

This file was deleted.

1 change: 0 additions & 1 deletion web/.node-version

This file was deleted.

7 changes: 0 additions & 7 deletions web/.npmrc

This file was deleted.

18 changes: 6 additions & 12 deletions web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,23 +2,17 @@

https://openbookcamera.com

## Development

npm install
npm start


## Build

npm run build
ビルドの無い静的サイトです。`index.html` / `css/style.css` / `img/` をそのまま配信しています。

## Development

## Demo
このディレクトリのファイルを直接編集してください。確認はブラウザで `index.html` を開くだけです。

https://calil.github.io/openbookcamera/
以前は sass を Parcel でビルドしていましたが、1ページの静的サイトに
ビルドを挟む必要が無いため廃止しました。CSS は `css/style.css` が原本です。

## Deploy

https://dash.cloudflare.com/9f2a842113dbb9618c3d37c24fa23af4/pages/view/openbookcamera

コミットするとCloudFlare Pagesにデプロイされる
master にコミットすると Cloudflare Pages に配信されます。ビルドは走りません。
Loading