-
Notifications
You must be signed in to change notification settings - Fork 1
Checklists and Processes
Jonathan Cutrell edited this page Jun 29, 2015
·
13 revisions
Purpose: to create a maintainable, repeatable, bite-sized process lists to reduce error rates and increase measurability across disciplines on our team.
- First things first: install Apple's developer tools. These come with XCode typically, but here's a list of downloads just in case.
- Install Homebrew
- Install RVM if you're doing anything Ruby related
- Setup your LAMP stack
- Get your local sites run on arbitrary .dev domains, using code like this:
Alias /phpmyadmin /usr/local/share/phpmyadmin
<Directory /usr/local/share/phpmyadmin/>
Options Indexes FollowSymLinks MultiViews
AllowOverride All
Order allow,deny
Allow from all
</Directory>
<VirtualHost *:80>
ServerName dev
DocumentRoot /Users/JonathanCutrell/Sites
VirtualDocumentRoot /Users/JonathanCutrell/Sites/%-2
UseCanonicalName Off
<Directory "/Users/JonathanCutrell/Sites/*">
AllowOverride All
Order allow,deny
Allow from all
</Directory>
</VirtualHost>
Note: Having issues with your sites directory not working? Make sure you uncomment the line that includes your user conf. It's commented out by default. httpd-userdir.conf - there's a line that includes the users/*.conf from your apache configs.
- To-Do
- To-Do
- to-do
- to-do
- to-do
- to-do
- to-do