{"id":21491764,"url":"https://github.com/shotaromatsuya/footle","last_synced_at":"2026-04-15T15:32:05.327Z","repository":{"id":38109278,"uuid":"283737343","full_name":"ShotaroMatsuya/footle","owner":"ShotaroMatsuya","description":"A self-made search engine that respects google Added youtubeAPI and wikipedeiaAPI to improve search function. And, we've improved the image search experience.","archived":false,"fork":false,"pushed_at":"2026-03-27T21:29:16.000Z","size":1393,"stargazers_count":1,"open_issues_count":14,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2026-03-28T03:57:05.224Z","etag":null,"topics":["circleci","copilot","mysql","nginx","snyk"],"latest_commit_sha":null,"homepage":"https://footle.smat710.com/","language":"PHP","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/ShotaroMatsuya.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,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2020-07-30T10:10:14.000Z","updated_at":"2024-09-26T02:45:50.000Z","dependencies_parsed_at":"2023-10-25T22:27:18.767Z","dependency_job_id":"734d2247-4b1c-4fa5-addb-fcab86bf8ca9","html_url":"https://github.com/ShotaroMatsuya/footle","commit_stats":null,"previous_names":[],"tags_count":11,"template":false,"template_full_name":null,"purl":"pkg:github/ShotaroMatsuya/footle","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShotaroMatsuya%2Ffootle","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShotaroMatsuya%2Ffootle/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShotaroMatsuya%2Ffootle/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShotaroMatsuya%2Ffootle/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ShotaroMatsuya","download_url":"https://codeload.github.com/ShotaroMatsuya/footle/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ShotaroMatsuya%2Ffootle/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31847608,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-15T15:24:51.572Z","status":"ssl_error","status_checked_at":"2026-04-15T15:24:39.138Z","response_time":63,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"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":["circleci","copilot","mysql","nginx","snyk"],"created_at":"2024-11-23T15:19:14.417Z","updated_at":"2026-04-15T15:32:05.307Z","avatar_url":"https://github.com/ShotaroMatsuya.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"[![CircleCI](https://dl.circleci.com/status-badge/img/gh/ShotaroMatsuya/footle/tree/master.svg?style=svg)](https://dl.circleci.com/status-badge/redirect/gh/ShotaroMatsuya/footle/tree/master)\n\n# AWS Architecture\n\n![infrastructure](/footle.drawio.png)\n\n# バックアップ\n\n```bash\nmysql -u [db_user] -p [db_name] \u003e /etc/mysql/sql/dump.sql\n```\n\nor\n\n```bash\n# こっちのが早い\nmysqldump -u [db_user] -p[password] [db_name] \u003e /etc/mysql/sql/dump.sql\n\n```\n\n# リストア\n\n```bash\nmysql -u [db_user] -p [db_name] \u003c /etc/mysql/sql/dump.sql\n```\n\n# Problem\n\n1. mysqldump で PROCESS 権限を要求される\n\n```sql\nmysql \u003e GRANT PROCESS ON *.* TO 'your-user';\n```\n\n確認\n\n```sql\nmysql \u003e SHOW GRANTS FOR 'your-user';\n```\n\n## job\n\n```bash\n./watchdog.sh 300 php job1.php \u003curl\u003e\n```\n\n## login\n\npublic repository への認証トークン更新\n\n```bash\naws ecr-public get-login-password --region us-east-1 | docker login --username AWS --password-stdin public.ecr.aws\n```\n\nECR private repository の認証トークン更新\n\n```bash\naws ecr get-login-password --region ap-northeast-1 | docker login --username AWS --password-stdin 528163014577.dkr.ecr.ap-northeast-1.amazonaws.com\n```\n\n## app init\n\n```bash\ncopilot app init footle\n```\n\n## env init \u0026 deploy\n\n```bash\ncopilot env init --name prod\ncopilot env deploy --name prod\n```\n\n## secret init\n\n```bash\ncopilot secret init --cli-input-yaml env/mysql.yaml\n```\n\n## svc init \u0026 deploy\n\n```bash\ncopilot svc init --name mysql\ncopilot svc deploy --name mysql --env prod\n```\n\n```bash\ncopilot svc init --name php\ncopilot svc deploy --name php --env prod\n```\n\n## job init \u0026 deploy\n\n```bash\ncopilot job init --name crawling\ncopilot job deploy --name crawling --env prod\n```\n\n## pipeline init \u0026 deploy\n\n```bash\ncopilot pipeline init --name\n\n```\n\n## clean up resources\n\n```bash\ncopilot app delete\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshotaromatsuya%2Ffootle","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fshotaromatsuya%2Ffootle","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fshotaromatsuya%2Ffootle/lists"}