{"id":15552844,"url":"https://github.com/jasonwalsh/punk","last_synced_at":"2025-04-23T20:24:15.701Z","repository":{"id":40843061,"uuid":"248799274","full_name":"jasonwalsh/punk","owner":"jasonwalsh","description":"Punk is a GUI for generating HashiCorp Packer templates","archived":false,"fork":false,"pushed_at":"2023-03-29T14:45:35.000Z","size":1279,"stargazers_count":27,"open_issues_count":21,"forks_count":3,"subscribers_count":3,"default_branch":"master","last_synced_at":"2025-04-18T04:55:35.540Z","etag":null,"topics":["amazon-ebs","aws","gui","packer","packer-template","vuejs"],"latest_commit_sha":null,"homepage":"https://murmuring-forest-55290.herokuapp.com/","language":"Vue","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/jasonwalsh.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}},"created_at":"2020-03-20T16:14:33.000Z","updated_at":"2025-02-06T19:40:01.000Z","dependencies_parsed_at":"2025-04-17T16:00:59.288Z","dependency_job_id":"faf06a7a-bc79-4d33-97da-51eef3d7667f","html_url":"https://github.com/jasonwalsh/punk","commit_stats":null,"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasonwalsh%2Fpunk","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasonwalsh%2Fpunk/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasonwalsh%2Fpunk/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jasonwalsh%2Fpunk/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jasonwalsh","download_url":"https://codeload.github.com/jasonwalsh/punk/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":250507173,"owners_count":21441933,"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":["amazon-ebs","aws","gui","packer","packer-template","vuejs"],"created_at":"2024-10-02T14:22:40.070Z","updated_at":"2025-04-23T20:24:15.676Z","avatar_url":"https://github.com/jasonwalsh.png","language":"Vue","funding_links":[],"categories":[],"sub_categories":[],"readme":"\u003cdiv align=\"center\"\u003e\n  \u003cimg width=\"2032\" src=\"https://user-images.githubusercontent.com/2184329/77548119-7c65b480-6e84-11ea-8582-c52bb8d9d539.png\" /\u003e\n  \u003cstrong\u003eA GUI for generating Packer templates\u003c/strong\u003e\n  \u003cp\u003eView a live example of Punk \u003ca href=\"https://murmuring-forest-55290.herokuapp.com\"\u003ehere\u003c/a\u003e!\u003c/p\u003e\n\u003c/div\u003e\n\n## Contents\n\n- [Motivation](#motivation)\n- [Requirements](#requirements)\n- [Usage](#usage)\n  - [Local](#local)\n  - [Docker](#docker)\n- [Limitations](#limitations)\n- [Future Considerations](#future-considerations)\n- [License](#license)\n\n## Motivation\n\nHashiCorp [Packer](https://packer.io/) is a tool for automating the creation of machine images. Packer uses [templates](https://packer.io/docs/templates/index.html) for defining one or more builds using one of two file formats, JSON and [HCL](https://github.com/hashicorp/hcl).\n\n\u003e I created Punk as a means to provide a GUI for creating Packer templates.\n\nTo put it quite simply, Punk provides a simple and clean user interface that allows users to focus more on the specific details of a machine image rather than the format of the Packer template.\n\n**Note:** Punk is still in its infancy and lacks many features. However, should you discover a missing feature or bug, please create a new [issue](https://github.com/jasonwalsh/punk/issues).\n\n## Requirements\n\n- [Yarn](https://classic.yarnpkg.com/en/docs/install) (for local deployment)\n- [Docker](https://www.docker.com/get-started) (for production deployment)\n\n## Usage\n\nGetting started with Punk is easy, simply follow the instructions below:\n\n### Local\n\n    $ yarn serve\n\n### Docker\n\n**Note:** Even though this is a public repository, you still need to be authenticated to download this image. For more information, please refer to the official [documentation](https://help.github.com/en/packages/using-github-packages-with-your-projects-ecosystem/configuring-docker-for-use-with-github-packages#authenticating-to-github-packages).\n\n    $ docker pull docker.pkg.github.com/jasonwalsh/punk/punk:latest\n    $ docker run -d -p 8080:8080 docker.pkg.github.com/jasonwalsh/punk/punk\n\n## Limitations\n\nPunk started as a weekend project and is very limited in functionality. Currently, Punk *only* supports the [`amazon-ebs`](https://packer.io/docs/builders/amazon-ebs.html) builder with limited configuration options.\n\nThe options currently supported for the `amazon-ebs` builder are:\n\n- `access_key`\n- `ami_name`\n- `instance_type`\n- `region`\n- `secret_key`\n- `source_ami`\n\nWhile these options are limited, the result produces a valid Packer template.\n\n## Future Considerations\n\nAs mentioned previously, Punk is still in its infancy and has the potential to grow. Below is a list of potential features that would make Punk a better product:\n\n- Support for additional [builders](https://packer.io/docs/builders/index.html)\n- Support for [provisioners](https://packer.io/docs/provisioners/index.html)\n- Support for [post-processors](https://packer.io/docs/post-processors/index.html)\n\n## License\n\n[MIT License](LICENSE)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjasonwalsh%2Fpunk","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjasonwalsh%2Fpunk","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjasonwalsh%2Fpunk/lists"}