Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sharkymark/v2-templates
Coder v2 Terraform templates and tips
https://github.com/sharkymark/v2-templates
Last synced: about 2 months ago
JSON representation
Coder v2 Terraform templates and tips
- Host: GitHub
- URL: https://github.com/sharkymark/v2-templates
- Owner: sharkymark
- Created: 2022-06-13T22:54:53.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-04-04T16:33:49.000Z (9 months ago)
- Last Synced: 2024-04-04T17:42:08.729Z (9 months ago)
- Language: HCL
- Homepage:
- Size: 67.6 MB
- Stars: 71
- Watchers: 5
- Forks: 29
- Open Issues: 3
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
Awesome Lists containing this project
- awesome-coder - sharkymark/v2-templates - A large collection of templates. (Templates / Miscellaneous)
README
# Coder OSS help
This is an FAQ, tips and tricks, and best practices to get you going with Coder v2 OSS and v2 Enterprise (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.
Here is an additional repo [coder-hw](https://github.com/sharkymark/coder-hw) with a Python-based CLI using the Coder API.
The [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.
![Main menu screenshot](./docs/images/docker-template.png)
# API examples
You 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.
# Template Emoji URLs
Here are several [Emoji URLs](emoji-urls.md) to IDE, programming language, and infrastructure emojis to make your templates pop in the Coder UI.
# Frequently Asked Questions (FAQ)
[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).
# Easiest way to getting started
The easiest and fastest way to run Coder is from the command line with the `coder` binary.
Download it here
```sh
curl -fsSL https://coder.com/install.sh | sh
```To specify a version and dry run before actually installing
```sh
curl -L https://coder.com/install.sh | sh -s -- --dry-run --version 2.10.0
```Using 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.
If you're on macOS and not a fan of `brew` like me, make sure you run this command instead:
```sh
curl -fsSL https://coder.com/install.sh | sh -s -- --method standalone
```> 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.
You can pass parameters/flags after `coder server` but I have a nice [`coder.yaml`](./standalone-yaml/coder.yaml) to easily tweak settings.
```sh
coder server --config coder.yaml
```# Templates
The 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.
![Main menu screenshot](./docs/images/templates-ui.png)
# Videos
Here are [some short videos](videos.md) installing, configuring and using Coder v2. As new features arrive, I add new videos.
## License
This project is licensed under the [MIT License](LICENSE)
## Contributing
### Disclaimer: Unmaintained and Untested Code
Please 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.
Use this program at your own risk, and be aware that:
1. Bugs may not be fixed
1. Compatibility issues may arise
1. Security vulnerabilities may existIf you encounter any issues or have concerns, feel free to open an issue or submit a pull request.