{"id":25613339,"url":"https://github.com/reki204/catscan","last_synced_at":"2026-06-12T21:31:53.730Z","repository":{"id":187594716,"uuid":"676409227","full_name":"reki204/CatScan","owner":"reki204","description":"これはゼミの課題です。機械学習を利用して猫の種類を判定するアプリです。","archived":false,"fork":false,"pushed_at":"2023-10-19T02:58:55.000Z","size":8836,"stargazers_count":0,"open_issues_count":6,"forks_count":2,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-11-11T21:23:03.654Z","etag":null,"topics":["flask","keras","vgg16-model"],"latest_commit_sha":null,"homepage":"https://cat-scan.vercel.app","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/reki204.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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":"2023-08-09T06:18:23.000Z","updated_at":"2025-04-08T10:21:22.000Z","dependencies_parsed_at":null,"dependency_job_id":"4bcc867f-e441-4de9-becd-e5c7fbc00241","html_url":"https://github.com/reki204/CatScan","commit_stats":null,"previous_names":["reki204/catscan"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/reki204/CatScan","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reki204%2FCatScan","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reki204%2FCatScan/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reki204%2FCatScan/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reki204%2FCatScan/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/reki204","download_url":"https://codeload.github.com/reki204/CatScan/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/reki204%2FCatScan/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":34263870,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-12T02:00:06.859Z","response_time":109,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"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":["flask","keras","vgg16-model"],"created_at":"2025-02-22T01:29:57.108Z","updated_at":"2026-06-12T21:31:53.701Z","avatar_url":"https://github.com/reki204.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# CatScan（仮）\n\nこのリポジトリの詳細はGoogleドキュメントを見てください。\n\n## 開発の手順\n\n※mainブランチでは作業しないでください。必ずブランチを切って開発してください。\n\n### ブランチの作り方\n\n- `git branch`で現在のブランチを確認する\n    - 必ずmainにいるか確認する。\n- `git checkout -b 名前/機能名`\n- 再びgit branchで作成されて緑になっているか確認する\n\n### 仮想環境の有効化\n\n- `cd desktop/catscan`\n- `venv\\Scripts\\activate`\n    - 仮想環境の有効化\n- `code .`でVSCodeを起動\n- `deactivate`\n    - 仮想環境を無効にする\n    - 開発が終わったら打つ\n\n### VSCodeでのサーバーの立て方\n\n- `ctrl + shift + @`でターミナル起動\n- `flask run`でサーバーを起動\n- `ctrl + c`でサーバーを終了する\n- `pip install ○○`をした場合は、`pip freeze \u003e requirements.txt`をする。\n\n### GitHubへ反映する方法\n\nコマンドプロンプト内で\n\n- `git add .`\n- `git commit -m “メッセージを入力する”`\n    - メッセージは変更したことを一行で書く。\n- `git push origin ブランチ名`\n\n### PR（プルリクエスト）の作成\n\n- git push後にGitHubのリポジトリで薄黄色のバーが表示\n- 緑色のCompare \u0026 pull requestをクリック\n- 緑色のCreate pull requestをクリックする\n\n### 他人が開発したものを取り込む場合\n\n- `git branch` → `git checkout main`\n    - ブランチを確認して、mainにいるか確認。\n- `git pull`\n    - リモートの変更差分を取り込む。\n- `git checkout ブランチ名` → `git merge main`\n    - 自分のブランチに移動してmainの変更をマージする。\n \n\n## こちらからも確認できます。\n```\n# 仮想環境の作成\npy -3 -m venv venv\n\n# 仮想環境の有効化（開発する度に打つ）\nvenv\\Scripts\\activate\n\n# 仮想環境を無効にする（開発が終わる度に打つ）\ndeactivate\n\n# 有効化した仮想環境内でFlaskをインストールする（初回のみ）\npip install Flask\n\n# git cloneしたら依存関係のインストール（初回のみ）\npip install -r requirements.txt\n\n# 現在の環境を書き出す（定期的に）\npip freeze \u003e requirements.txt\n\n# 開発サーバーの実行\nflask run\n\n# デバッグ\nflask run --debugger --reload\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freki204%2Fcatscan","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Freki204%2Fcatscan","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Freki204%2Fcatscan/lists"}