{"id":20677831,"url":"https://github.com/clivern/kevin-cookbook","last_synced_at":"2026-04-11T06:43:28.010Z","repository":{"id":86321799,"uuid":"133020408","full_name":"Clivern/Kevin-Cookbook","owner":"Clivern","description":"🐙A Chef Cookbook To Deploy Kevin on Linux Servers.","archived":false,"fork":false,"pushed_at":"2024-04-01T20:18:35.000Z","size":36,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2025-12-19T14:39:31.693Z","etag":null,"topics":["chef","chef-cookbook","chef-repo","cookbook","django","kevin","nginx","python3","wsgi"],"latest_commit_sha":null,"homepage":"https://github.com/Clivern/Kevin","language":"Ruby","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/Clivern.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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":"2018-05-11T09:36:10.000Z","updated_at":"2024-03-28T21:11:04.000Z","dependencies_parsed_at":null,"dependency_job_id":"52bcb241-4f19-4aaa-9b15-9e5275114f12","html_url":"https://github.com/Clivern/Kevin-Cookbook","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/Clivern/Kevin-Cookbook","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2FKevin-Cookbook","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2FKevin-Cookbook/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2FKevin-Cookbook/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2FKevin-Cookbook/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Clivern","download_url":"https://codeload.github.com/Clivern/Kevin-Cookbook/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Clivern%2FKevin-Cookbook/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31671629,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-10T17:19:37.612Z","status":"online","status_checked_at":"2026-04-11T02:00:05.776Z","response_time":54,"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":["chef","chef-cookbook","chef-repo","cookbook","django","kevin","nginx","python3","wsgi"],"created_at":"2024-11-16T21:17:16.731Z","updated_at":"2026-04-11T06:43:27.965Z","avatar_url":"https://github.com/Clivern.png","language":"Ruby","funding_links":[],"categories":[],"sub_categories":[],"readme":"Kevin-Cookbook\n==============\n\nA Chef Cookbook To Deploy Kevin on Linux Servers.\n\n\nUsage\n-----\n\n1. Add the following recipes to your node run list.\n\n```bash\n{\n    \"run_list\": [\n        \"recipe[kevin-cookbook::default]\"\n    ]\n}\n```\n\n2. Also add the following attributes to the node.\n\n```bash\n{\n    \"mysql\": {\n        \"install\": true, // To install MySQL (Not Recommended)\n        \"create_db\": true, // To Create the DB (Not Recommended)\n        \"client\": true // Recommended to set to true\n    },\n    \"app\": {\n        \"branch\": \"master\",\n        \"repository\": \"https://github.com/Clivern/Kevin.git\",\n        \"fqdn\": \"xxx.xxx.x.xx\", // Server Domain or IP\n        \"env\": {\n            \"APP_KEY\": \"yxyxyxyxsydysyayysysysys\",\n            \"DB_CONNECTION\": \"mysql\",\n            \"DB_HOST\": \"127.0.0.1\",\n            \"DB_PORT\": \"3306\",\n            \"DB_DATABASE\": \"kevin\",\n            \"DB_USERNAME\": \"root\",\n            \"DB_PASSWORD\": \"root\"\n        }\n    }\n}\n```\n\nWe recommend to install MySQL manually on the same server or another server.\n\n3. The node should be something like that:\n\n```bash\n{\n    \"name\": \"node-01\",\n    \"chef_environment\": \"_default\",\n    \"normal\": {\n        \"tags\": [\n\n        ],\n        \"mysql\": {\n            \"install\": true, // To install MySQL\n            \"create_db\": true // To Create the DB\n        },\n        \"app\": {\n            \"branch\": \"master\",\n            \"repository\": \"https://github.com/Clivern/Kevin.git\",\n            \"fqdn\": \"xxx.xxx.x.xx\", // Server Domain or IP\n            \"env\": {\n                \"APP_KEY\": \"yxyxyxyxsydysyayysysysys\",\n                \"DB_CONNECTION\": \"mysql\",\n                \"DB_HOST\": \"127.0.0.1\",\n                \"DB_PORT\": \"3306\",\n                \"DB_DATABASE\": \"kevin\",\n                \"DB_USERNAME\": \"root\",\n                \"DB_PASSWORD\": \"root\"\n            }\n        }\n    },\n    \"policy_name\": null,\n    \"policy_group\": null,\n    \"run_list\": [\n        \"recipe[kevin-cookbook::default]\"\n    ]\n}\n```\n\n4. Finally run the `chef-client` on your node.\n\n\nMisc\n====\n\nChangelog\n---------\nVersion 1.0.0:\n```\nComing Soon :D\n```\n\nAcknowledgements\n----------------\n\n© 2018, Clivern. Released under [The Apache Software License, Version 2.0](http://www.apache.org/licenses/LICENSE-2.0.txt).\n\n**Kevin-Cookbook** is authored and maintained by [@clivern](http://github.com/clivern).\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclivern%2Fkevin-cookbook","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fclivern%2Fkevin-cookbook","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fclivern%2Fkevin-cookbook/lists"}