Skip to content

Commit

Permalink
Default config has real defaults
Browse files Browse the repository at this point in the history
Resolves rethinkdb#520
  • Loading branch information
Josh Kuhn committed Jun 4, 2016
1 parent 8ffaa8b commit 718ba02
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions cli/src/init.js
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ const makeDefaultConfig = (projectName) => `\
# 'secure' will disable HTTPS and use HTTP instead when set to 'false'
# 'key_file' and 'cert_file' are required for serving HTTPS
#------------------------------------------------------------------------------
# secure = false
# secure = true
# key_file = "horizon-key.pem"
# cert_file = "horizon-cert.pem"
Expand All @@ -71,8 +71,8 @@ project_name = "${projectName}"
# 'auto_create_collection' creates a collection when one is needed but does not exist
# 'auto_create_index' creates an index when one is needed but does not exist
#------------------------------------------------------------------------------
# auto_create_collection = true
# auto_create_index = true
# auto_create_collection = false
# auto_create_index = false
###############################################################################
Expand All @@ -89,7 +89,7 @@ project_name = "${projectName}"
# Debug Options
# 'debug' enables debug log statements
#------------------------------------------------------------------------------
# debug = true
# debug = false
###############################################################################
Expand All @@ -102,8 +102,8 @@ project_name = "${projectName}"
# 'auth_redirect' specifies where users will be redirected to after login
#------------------------------------------------------------------------------
token_secret = "${crypto.randomBytes(64).toString('base64')}"
# allow_anonymous = true
# allow_unauthenticated = true
# allow_anonymous = false
# allow_unauthenticated = false
# auth_redirect = "/"
#
# [auth.facebook]
Expand Down

0 comments on commit 718ba02

Please sign in to comment.