{"id":13483875,"url":"https://github.com/itamae-kitchen/itamae","last_synced_at":"2025-05-13T15:09:18.810Z","repository":{"id":12720340,"uuid":"15393024","full_name":"itamae-kitchen/itamae","owner":"itamae-kitchen","description":"Configuration management tool inspired by Chef, but simpler and lightweight. Formerly known as Lightchef.","archived":false,"fork":false,"pushed_at":"2025-01-17T13:12:18.000Z","size":953,"stargazers_count":1126,"open_issues_count":38,"forks_count":124,"subscribers_count":63,"default_branch":"master","last_synced_at":"2025-05-01T15:02:05.969Z","etag":null,"topics":["chef","infrastructure","infrastructure-as-code","itamae","ruby"],"latest_commit_sha":null,"homepage":"https://itamae.kitchen/","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/itamae-kitchen.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","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":"2013-12-23T10:30:26.000Z","updated_at":"2025-04-26T07:33:34.000Z","dependencies_parsed_at":"2023-07-14T11:28:16.575Z","dependency_job_id":"f2f5dae8-d831-4c08-b55e-26e89bbfed4d","html_url":"https://github.com/itamae-kitchen/itamae","commit_stats":{"total_commits":991,"total_committers":73,"mean_commits":"13.575342465753424","dds":0.4934409687184662,"last_synced_commit":"4082a1fbf23a39e75a2e23fd01c6f4b2a5b0cb5a"},"previous_names":["ryotarai/lightchef"],"tags_count":178,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itamae-kitchen%2Fitamae","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itamae-kitchen%2Fitamae/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itamae-kitchen%2Fitamae/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/itamae-kitchen%2Fitamae/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/itamae-kitchen","download_url":"https://codeload.github.com/itamae-kitchen/itamae/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":253187143,"owners_count":21868070,"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":["chef","infrastructure","infrastructure-as-code","itamae","ruby"],"created_at":"2024-07-31T17:01:16.343Z","updated_at":"2025-05-13T15:09:13.720Z","avatar_url":"https://github.com/itamae-kitchen.png","language":"Ruby","funding_links":[],"categories":["Ruby","ruby","DevOps Tools"],"sub_categories":[],"readme":"# [![](https://raw.githubusercontent.com/itamae-kitchen/itamae-logos/master/small/FA-Itamae-horizontal-01-180x72.png)](https://github.com/itamae-kitchen/itamae)\n\n[![Gem Version](https://badge.fury.io/rb/itamae.svg)](http://badge.fury.io/rb/itamae) [![Maintainability](https://api.codeclimate.com/v1/badges/1de79e271cff2a43091f/maintainability)](https://codeclimate.com/github/itamae-kitchen/itamae/maintainability) [![test](https://github.com/itamae-kitchen/itamae/actions/workflows/test.yml/badge.svg)](https://github.com/itamae-kitchen/itamae/actions/workflows/test.yml) [![Slack](https://img.shields.io/badge/slack-join-blue.svg)](https://join.slack.com/t/itamae/shared_invite/enQtNTExNTI3ODM1NTY5LTM5MWJlZTgwODE0YTUwMThiNzZjN2I1MGNlZjE2NjlmNzg5NTNlOTliMDhkNDNmNTQ2ZTgwMzZjNjI5NDJiZGI)\n\nSimple and lightweight configuration management tool inspired by Chef.\n\n- [CHANGELOG](https://github.com/itamae-kitchen/itamae/blob/master/CHANGELOG.md)\n\n## Concept\n\n- Chef-like DSL (but not compatible with Chef)\n- Simpler and lighter weight than Chef\n- Only recipes\n- Idempotent\n\n## Installation\n\n```\n$ gem install itamae\n```\n\n## Getting Started\n\nCreate a recipe file as `recipe.rb`:\n\n```ruby\npackage 'nginx' do\n  action :install\nend\n\nservice 'nginx' do\n  action [:enable, :start]\nend\n```\n\nAnd then execute `itamae` command to apply a recipe to a local machine.\n\n```\n$ itamae local recipe.rb\n INFO : Starting Itamae...\n INFO : Recipe: /home/user/recipe.rb\n INFO :    package[nginx]\n INFO :       action: install\n INFO :          installed will change from 'false' to 'true'\n INFO :    service[nginx]\n INFO :       action: enable\n INFO :       action: start\n```\n\nOr you can apply a recipe to a remote machine by `itamae ssh`.\n\n```\n$ itamae ssh --host host001.example.jp recipe.rb\n```\n\nYou can also apply a recipe to Vagrant VM by `itamae ssh --vagrant`.\n\n```\n$ itamae ssh --vagrant --host vm_name recipe.rb\n```\n\nYou can find further information to use Itamae on [Itamae Wiki](https://github.com/itamae-kitchen/itamae/wiki).\n\nEnjoy!\n\n## Documentation\n\nhttps://github.com/itamae-kitchen/itamae/wiki\n\n## Run tests\n\nRequirements: Vagrant\n\n```\n$ bundle exec rake spec\n```\n\n## Get Involved\n\n- [Join Slack team](https://itamae-slackin.herokuapp.com)\n\n## Presentations / Articles\n\n### in Japanese\n\n- [Itamae - Infra as Code 現状確認会](https://speakerdeck.com/ryotarai/itamae-infra-as-code-xian-zhuang-que-ren-hui)\n- [クックパッドのサーバプロビジョニング事情 - クックパッド開発者ブログ](http://techlife.cookpad.com/entry/2015/05/12/080000)\n- [Itamaeが構成管理を仕込みます！ ～新進気鋭の国産・構成管理ツール～：連載｜gihyo.jp … 技術評論社](http://gihyo.jp/admin/serial/01/itamae)\n\n\n## Contributing\n\nIf you have a problem, please [create an issue](https://github.com/itamae-kitchen/itamae/issues/new) or a pull request.\n\n1. Fork it\n2. Create your feature branch (`git checkout -b my-new-feature`)\n3. Commit your changes (`git commit -am 'Add some feature'`)\n4. Push to the branch (`git push origin my-new-feature`)\n5. Create new Pull Request\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitamae-kitchen%2Fitamae","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fitamae-kitchen%2Fitamae","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fitamae-kitchen%2Fitamae/lists"}