{"id":13514502,"url":"https://github.com/sharkymark/v2-templates","last_synced_at":"2025-03-31T03:30:54.513Z","repository":{"id":46019272,"uuid":"503138531","full_name":"sharkymark/v2-templates","owner":"sharkymark","description":"Coder v2 Terraform templates and tips","archived":false,"fork":false,"pushed_at":"2024-04-04T16:33:49.000Z","size":70876,"stargazers_count":71,"open_issues_count":3,"forks_count":29,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-04-04T17:42:08.729Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"","language":"HCL","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/sharkymark.png","metadata":{"files":{"readme":"README.md","changelog":"changelog.md","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":"2022-06-13T22:54:53.000Z","updated_at":"2024-05-30T06:49:11.602Z","dependencies_parsed_at":"2023-12-03T16:24:35.339Z","dependency_job_id":"1663d32a-83d1-496f-9a7e-7d607202cec6","html_url":"https://github.com/sharkymark/v2-templates","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sharkymark%2Fv2-templates","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sharkymark%2Fv2-templates/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sharkymark%2Fv2-templates/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/sharkymark%2Fv2-templates/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/sharkymark","download_url":"https://codeload.github.com/sharkymark/v2-templates/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246413377,"owners_count":20773053,"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":[],"created_at":"2024-08-01T05:00:57.032Z","updated_at":"2025-03-31T03:30:54.508Z","avatar_url":"https://github.com/sharkymark.png","language":"HCL","funding_links":[],"categories":["Templates"],"sub_categories":["Miscellaneous"],"readme":"# Coder OSS help\n\n\u003e I am [no longer with Coder](https://markmilligan.io/experience) so only maintain a handful of Docker-based templates for my own development needs. All the best with your Coder journey!\n\nThis is an FAQ, tips and tricks, and best practices to get you going with Coder v2 OSS and v2 Premium (paid). If you're looking for an v2 enterprise trial key, fill out this [form](https://coder.com/trial) for a 30-day trial  or you can sign up when creating your admin user after deploying Coder.\n\nHere is an additional repo [coder-hw](https://github.com/sharkymark/coder-hw) with a Python-based CLI using the Coder API.\n\nThe [official v2 docs](https://github.com/coder/coder/tree/main/docs) and [template examples](https://github.com/coder/coder/tree/main/examples/templates) are great resources too. Also my colleague [bpmct](https://github.com/bpmct/coder-templates) authors some amazing templates too.\n\n![Main menu screenshot](./docs/images/docker-template.png)\n\n# Coder-maintained templates and modules\n\nI recommend using Coder-maintained templates and modules in the [Coder Registry](https://registry.coder.com/).\n\n# Deprecated templates\n\nWithin the `src` directory, you'll find the handful of Docker-based templates that I use personally. Any other templates in the `1-notmaintained` directory are no longer maintained but you'll welcome to use them as a reference.\n\n# API examples\n\nYou can find API endpoints from inspecting the UI in your browser tools. [Here are examples](api.md) to get you going. This new repo [coder-hw](https://github.com/sharkymark/coder-hw) heavily uses the Coder API with a Python-based CLI app.\n\n# Template Emoji URLs\n\nHere are several [Emoji URLs](emoji-urls.md) to IDE, programming language, and infrastructure emojis to make your templates pop in the Coder UI.\n\n# Frequently Asked Questions (FAQ)\n\n[Coder's docs](https://github.com/coder/coder/tree/main/docs) are the first place to answers but I compile things that I find are important or recurring. [Here is the FAQ](faq.md).\n\n# Easiest way to getting started\n\nThe easiest and fastest way to run Coder is from the command line with the `coder` binary.\n\nDownload it here\n\n```sh\ncurl -fsSL https://coder.com/install.sh | sh\n```\n\nTo specify a version and dry run before actually installing\n\n```sh\n curl -L https://coder.com/install.sh | sh -s -- --dry-run --version 2.10.0\n```\n\nUsing fsS along with L, causes `curl` to fail silently on server errors, preventing showing the progress meter, and still show an error if it fails.\n\nIf you're on macOS and not a fan of `brew` like me, make sure you run this command instead:\n\n```sh\ncurl -fsSL https://coder.com/install.sh | sh -s -- --method standalone\n```\n\n\u003e BTW, the coder binary is also the Coder CLI, which you use to create, push templates, even create, start, stop workspaces, API Key tokens, etc.\n\nYou can pass parameters/flags after `coder server` but I have a nice [`coder.yaml`](./standalone-yaml/coder.yaml) to easily tweak settings.\n\n```sh\ncoder server --config coder.yaml\n```\n\n# Templates\n\nThe example templates that ship with v2 are [here](https://github.com/coder/coder/tree/main/examples/templates) and [bpmct](https://github.com/bpmct/coder-templates) has some sweet templates too like podman and nifty AWS VM template that only persists the home volume.\n\n![Main menu screenshot](./docs/images/templates-ui.png)\n\n# Videos\n\nHere are [some short videos](videos.md) installing, configuring and using Coder v2. As new features arrive, I add new videos.\n\n## License\n\nThis project is licensed under the [MIT License](LICENSE)\n\n## Contributing\n\n### Disclaimer: Unmaintained and Untested Code\n\nPlease note that this program is not actively maintained or tested. While it may work as intended, it's possible that it will break or behave unexpectedly due to changes in dependencies, environments, or other factors.\n\nUse this program at your own risk, and be aware that:\n1. Bugs may not be fixed\n1. Compatibility issues may arise\n1. Security vulnerabilities may exist\n\nIf you encounter any issues or have concerns, feel free to open an issue or submit a pull request.\n\n\n\n\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsharkymark%2Fv2-templates","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fsharkymark%2Fv2-templates","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fsharkymark%2Fv2-templates/lists"}