Skip to content

Commit 1b6e0db

Browse files
committed
Set default vars in config sample. Fix typo.
1 parent de2b669 commit 1b6e0db

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

bootstrap/init_python_env.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,6 @@ if [[ ! -z $DJANGO_VERSION ]]; then
3434

3535
read -p "Setup a New Database For Your Project? [y/n] " prompt
3636
if [[ ${prompt,,} =~ ^(yes|y)$ ]]; then
37-
. manage_djagno_db
37+
. manage_django_db
3838
fi
3939
fi

config.yml

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,16 +12,16 @@ config:
1212
guest_port: '80' # Virtual Machine Guest. Default port 80 is blocked when not sudo.
1313
# accessing "localhost/" would be akin to "http://podtest8880.dev:8888"
1414
# Apache runs on port 80 by default. Read the readme to change ports.
15-
hostname: 'podtest8888.dev'
15+
hostname: 'local.dev'
1616
# Sync Host and Guest Machine folders.
1717
synced_folder:
1818
# Host is relative to where Vagrantfile is.
1919
host: 'www'
2020
# guest is relative to where VM root is.
2121
guest: '/vagrant/www'
2222
# these get attached to each commit. Can be project specific, but this is so user can get to developing right after VM is up.
23-
git_user_name: 'twchris'
24-
git_user_email: '[email protected]'
23+
git_user_name: 'YOUR_GITHUB_USERNAME'
24+
git_user_email: 'YOUR_GITHUB_EMAIL'
2525
# a_different_master_environment:
2626
# # Ubuntu Trusty 14.04 by Default.
2727
# base_box: 'ubuntu/trusty64'

0 commit comments

Comments
 (0)