Skip to content

Commit

Permalink
Set default vars in config sample. Fix typo.
Browse files Browse the repository at this point in the history
  • Loading branch information
ccurtin committed Oct 3, 2016
1 parent de2b669 commit 1b6e0db
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion bootstrap/init_python_env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,6 +34,6 @@ if [[ ! -z $DJANGO_VERSION ]]; then

read -p "Setup a New Database For Your Project? [y/n] " prompt
if [[ ${prompt,,} =~ ^(yes|y)$ ]]; then
. manage_djagno_db
. manage_django_db
fi
fi
6 changes: 3 additions & 3 deletions config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@ config:
guest_port: '80' # Virtual Machine Guest. Default port 80 is blocked when not sudo.
# accessing "localhost/" would be akin to "http://podtest8880.dev:8888"
# Apache runs on port 80 by default. Read the readme to change ports.
hostname: 'podtest8888.dev'
hostname: 'local.dev'
# Sync Host and Guest Machine folders.
synced_folder:
# Host is relative to where Vagrantfile is.
host: 'www'
# guest is relative to where VM root is.
guest: '/vagrant/www'
# these get attached to each commit. Can be project specific, but this is so user can get to developing right after VM is up.
git_user_name: 'twchris'
git_user_email: 'chris@twowords.co'
git_user_name: 'YOUR_GITHUB_USERNAME'
git_user_email: 'YOUR_GITHUB_EMAIL'
# a_different_master_environment:
# # Ubuntu Trusty 14.04 by Default.
# base_box: 'ubuntu/trusty64'
Expand Down

0 comments on commit 1b6e0db

Please sign in to comment.