1
0
Fork 0
mirror of synced 2024-11-22 16:25:34 -05:00

Updated Tips and Tricks (markdown)

Eric Carlson 2023-10-12 01:20:57 -04:00
parent 645661d7c9
commit 22472a5159

@ -198,18 +198,6 @@ Obviously this `LocalCommand` is executed every time you connect to the remote m
This works best if you use public key authentication (or GSSAPI/Kerberos authentication) so SSH doesn't ask for a password when logging in. If you do use password authentication then you will need to enter your password once for each of the two SSH connections. This works best if you use public key authentication (or GSSAPI/Kerberos authentication) so SSH doesn't ask for a password when logging in. If you do use password authentication then you will need to enter your password once for each of the two SSH connections.
## Bring Your Own Userspace (BYOU)
Want to run your development environment in a docker container? Learn about Bring Your Own Userspace (BYOU) by following this [tutorial](https://github.com/ecarlson94/dotbot-template/wiki/Bring-Your-Own-Userspace-(BYOU))!
Here is a quick explanation of benefits:
- Minimal dependency installation on host
- Incredibly fast uptime on new machine
- This is because most userspace dependency installation occurs in a build process and we publish our docker image to [Docker Hub](https://hub.docker.com)
- Multi-OS Friendly
- Most of our userspace dependency management is moved to alpine linux
- Except for a few things, we don't need to maintain userspace dependency installation across multiple operating systems
## Automatically update your Dotbot config file when you add files in Git ## Automatically update your Dotbot config file when you add files in Git
You can use this tool (implemented as a Git pre-commit hook) to automatically update Dotbot's config file when adding files in Git: https://github.com/gwerbin/dotbot-autobot. You can use this tool (implemented as a Git pre-commit hook) to automatically update Dotbot's config file when adding files in Git: https://github.com/gwerbin/dotbot-autobot.