{"id":21008579,"url":"https://github.com/vim-jp/vim-jp.github.io","last_synced_at":"2025-04-05T04:11:52.188Z","repository":{"id":1664043,"uuid":"2390405","full_name":"vim-jp/vim-jp.github.io","owner":"vim-jp","description":"The website for vim-jp.org","archived":false,"fork":false,"pushed_at":"2025-02-12T14:52:55.000Z","size":22407,"stargazers_count":94,"open_issues_count":10,"forks_count":29,"subscribers_count":63,"default_branch":"master","last_synced_at":"2025-03-29T03:07:36.409Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://vim-jp.org/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"cc-by-4.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/vim-jp.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.txt","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2011-09-15T04:56:22.000Z","updated_at":"2025-02-12T14:52:59.000Z","dependencies_parsed_at":"2023-07-06T01:52:36.255Z","dependency_job_id":"6a350277-e9f1-453c-abe1-cbd18f96b07c","html_url":"https://github.com/vim-jp/vim-jp.github.io","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-jp%2Fvim-jp.github.io","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-jp%2Fvim-jp.github.io/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-jp%2Fvim-jp.github.io/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vim-jp%2Fvim-jp.github.io/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vim-jp","download_url":"https://codeload.github.com/vim-jp/vim-jp.github.io/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247284950,"owners_count":20913704,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":[],"created_at":"2024-11-19T09:12:53.789Z","updated_at":"2025-04-05T04:11:52.152Z","avatar_url":"https://github.com/vim-jp.png","language":"JavaScript","readme":"# vim-jp.github.io\n\nSource of \u003chttps://vim-jp.org/\u003e\n\n  * [EditSite](https://github.com/vim-jp/vim-jp.github.io/wiki/EditSite) サイト編集の手順 (ローカル環境での確認方法)\n\n\u003ca rel=\"license\" href=\"http://creativecommons.org/licenses/by/4.0/\"\u003e\u003cimg alt=\"クリエイティブ・コモンズ・ライセンス\" style=\"border-width:0\" src=\"https://i.creativecommons.org/l/by/4.0/88x31.png\" /\u003e\u003c/a\u003e\u003cbr /\u003eこの 作品 は \u003ca rel=\"license\" href=\"http://creativecommons.org/licenses/by/4.0/\"\u003eクリエイティブ・コモンズ 表示 4.0 国際 ライセンス\u003c/a\u003eの下に提供されています。\n\n## ローカルでビルド・確認する方法\n\n### 必要なもの\n\n* Docker\n* (オプション) Python 3: ローカルHTTPサーバーをPython 3で動かす\n\n### ビルド\n\n以下のコマンドを実行すると `_site/` ディレクトリにHTML他が出力される。\n\n```console\n$ ./_scripts/docker_jekyll jekyll build\n```\n\n以下のようにするとインクリメンタルビルドが有効になり、\n2回目以降のビルド時間が短縮される。\n\n```console\n$ ./_scripts/docker_jekyll jekyll build -I\n```\n\n### ローカルサーバー\n\n以下のコマンドで `jekyll serve` を実行し、ビルドした上でローカルHTTPサーバーが\n起動し、手元のWebブラウザで内容を確認できる。\n\n```console\n$ ./_scripts/docker_jekyll_serve\n```\n\nこれは4000番のポートでコンテンツを供給する。\nWebブラウザで \u003chttp://127.0.0.1:4000/\u003e を開くことで内容を確認できる。\n\nまた以下のように同コマンドへオプションを指定すると、インクリメンタルビルドと\n変更監視\u0026自動再ビルド機能が有効になる。\n\n```console\n$ ./_scripts/docker_jekyll_serve -wI\n```\n\nWindowsなどのシステムでは変更監視が機能しない場合がある。\nそのようなケースではPython 3でローカルサーバーを立て、\nビルドは手動でやってしまったほうが手っ取り早い場合があるかもしれない。\nそのやり方の詳しくは後述。\n\nローカルサーバーだけが必要で、変更監視や自動更新が不要な場合は次のように\n起動しても良いかもしれない。\n\n```console\n$ ./_scripts/docker_jekyll_serve --skip-initial-build --no-watch\n```\n\n#### Pythonを使用したローカルサーバー\n\n以下のコマンドでPythonによるローカルHTTPサーバーを起動できる\n\n```console\n$ ./_scripts/python_http_server\n```\n\nこれは8000番のポートでコンテンツを供給するので、\nWebブラウザで \u003chttp://127.0.0.1:8000/\u003e を開くことで内容を確認できる。\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvim-jp%2Fvim-jp.github.io","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvim-jp%2Fvim-jp.github.io","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvim-jp%2Fvim-jp.github.io/lists"}