-
Notifications
You must be signed in to change notification settings - Fork 12
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #56 from tknerr/feature/desktop-readme
Place a README on the desktop
- Loading branch information
Showing
5 changed files
with
69 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,48 @@ | ||
|
||
# README | ||
|
||
A brief guide to walk you through the initial setup of this developer VM | ||
|
||
## Initial Keyboard Setup | ||
|
||
Configure the keyboard layout and adjust the timezone: | ||
|
||
* System Settings... -> Text Entry | ||
* System Settings... -> Time & Date | ||
|
||
If you have a totally different keymap (e.g. on a MacBook) you can always reconfigure it: | ||
``` | ||
sudo dpkg-reconfigure keyboard-configuration | ||
``` | ||
|
||
## Updating this Developer VM | ||
|
||
You can run these commands from anywhere inside this developer VM: | ||
|
||
* `update-vm` - update the VM by applying the Chef recipes from the locally checked out repo at `~/vm-setup` | ||
* `update-vm --pull` - same as above, but update repo before by pulling the latest changes | ||
* `update-vm --verify-only` - don't update the VM, only run the Serverspec tests | ||
* `update-vm --provision-only` - don't run the Serverspec tests, only update the vm | ||
|
||
|
||
## Getting Started! | ||
|
||
Please refer to the sections below on how to start developing with the specific toolchain in this developer VM. | ||
|
||
### Initial Git Configuration | ||
|
||
Generate a new SSH keypair (and add the public key [to your Github account](https://github.com/settings/keys)): | ||
``` | ||
ssh-keygen -t rsa -b 4096 -C "your.name@linus-kitchen" | ||
``` | ||
|
||
Configure your git username / email: | ||
``` | ||
git config --global user.name "Your Name" | ||
git config --global user.email "[email protected]" | ||
``` | ||
|
||
### Follow the ZDays 2015 Tutorials | ||
|
||
Now that you are all set up, you can follow the Chef / Vagrant tutorials in here: | ||
https://github.com/tknerr/zdays2015-demo-repo |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters