{"id":25839257,"url":"https://github.com/timeless-residents/handson-elm","last_synced_at":"2025-07-31T14:07:30.097Z","repository":{"id":280068159,"uuid":"940892881","full_name":"timeless-residents/handson-elm","owner":"timeless-residents","description":"A hands-on guide for learning the Elm programming language through basic concepts and practical examples","archived":false,"fork":false,"pushed_at":"2025-03-01T02:28:01.000Z","size":56,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-01T03:19:26.244Z","etag":null,"topics":["beginner-friendly","elm","functional-programming","learning","programming","tutorial","web-development"],"latest_commit_sha":null,"homepage":"https://timeless-residents.github.io/handson-elm/","language":"Elm","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/timeless-residents.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":"2025-03-01T02:11:00.000Z","updated_at":"2025-03-01T02:27:42.000Z","dependencies_parsed_at":"2025-03-01T03:29:37.654Z","dependency_job_id":null,"html_url":"https://github.com/timeless-residents/handson-elm","commit_stats":null,"previous_names":["timeless-residents/handson-elm"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/timeless-residents/handson-elm","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timeless-residents%2Fhandson-elm","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timeless-residents%2Fhandson-elm/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timeless-residents%2Fhandson-elm/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timeless-residents%2Fhandson-elm/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/timeless-residents","download_url":"https://codeload.github.com/timeless-residents/handson-elm/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/timeless-residents%2Fhandson-elm/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":268052928,"owners_count":24187966,"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","status":"online","status_checked_at":"2025-07-31T02:00:08.723Z","response_time":66,"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":["beginner-friendly","elm","functional-programming","learning","programming","tutorial","web-development"],"created_at":"2025-03-01T04:26:12.063Z","updated_at":"2025-07-31T14:07:30.051Z","avatar_url":"https://github.com/timeless-residents.png","language":"Elm","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Hands-on Elm Project\n\nこのプロジェクトは、Elmプログラミング言語を学ぶためのハンズオンガイドです。\n\n## プロジェクトの概要\n\nこのリポジトリには、Elmの基本的な概念と実践的な例を通じて、Elmの使い方を学ぶための資料が含まれています。\n\n## セットアップ手順\n\n1. [Elmの公式サイト](https://elm-lang.org/)からElmをインストールします。\n2. このリポジトリをクローンします:\n    ```sh\n    git clone https://github.com/timeless-residents/handson-elm.git\n    ```\n3. プロジェクトディレクトリに移動します:\n    ```sh\n    cd handson-elm\n    ```\n4. 依存関係は自動的に処理されます。\n\n## 使用方法\n\n1. 開発サーバーを起動します:\n    ```sh\n    elm reactor\n    ```\n2. ブラウザで[http://localhost:8000](http://localhost:8000)にアクセスします。\n3. `src/Main.elm`ファイルを編集して、Elmのコードを試してみてください。\n\n## ディレクトリ構造\n\n```\nhandson-elm/\n├── src/\n│   ├── Main.elm\n│   └── ...\n├── tests/\n│   └── ...\n└── README.md\n```\n\n## デプロイ手順\n\nGitHub Pagesにデプロイするには、以下の手順に従ってください。\n\n1. リポジトリのSettingsに移動し、PagesセクションでGitHub Pagesを有効にします。\n2. `.github/workflows/deploy.yml`ファイルを作成し、以下の内容を追加します:\n    ```yaml\n    name: Deploy to GitHub Pages\n\n    on:\n      push:\n        branches:\n          - main\n\n    jobs:\n      build:\n        runs-on: ubuntu-latest\n        permissions:\n          contents: write\n\n        steps:\n          - name: Checkout repository\n            uses: actions/checkout@v2\n\n          - name: Setup Node.js\n            uses: actions/setup-node@v2\n            with:\n              node-version: \"14\"\n\n          - name: Install Elm\n            run: npm install -g elm\n\n          - name: Create dist directory\n            run: mkdir -p dist\n\n          - name: Build project\n            run: elm make src/Main.elm --optimize --output=dist/elm.js\n\n          - name: Copy public files to dist\n            run: |\n              if [ -d \"public\" ]; then\n                cp -r public/* dist/\n              else\n                echo \"Public directory not found. Please create a public directory with index.html\"\n                exit 1\n\n          - name: Deploy to GitHub Pages\n            uses: peaceiris/actions-gh-pages@v3\n            with:\n              github_token: ${{ secrets.GITHUB_TOKEN }}\n              publish_dir: ./dist\n    ```\n\n## 参考資料\n\n- [Elm公式ドキュメント](https://guide.elm-lang.org/)\n- [Elm入門ガイド](https://elm-lang.org/docs)\n\n## ライセンス\n\nこのプロジェクトはMITライセンスの下で公開されています。詳細は[LICENSE](LICENSE)ファイルを参照してください。\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimeless-residents%2Fhandson-elm","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Ftimeless-residents%2Fhandson-elm","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Ftimeless-residents%2Fhandson-elm/lists"}