Skip to content

Commit

Permalink
SIGNUPS_ENABLED -> ACCOUNT_SIGNUPS_ENABLED in docs (#51)
Browse files Browse the repository at this point in the history
  • Loading branch information
abulte authored Jun 18, 2020
1 parent affcb89 commit c9b5a67
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions TEMPLATE.env
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ DJANGO_SECRET_KEY=random_string
ALLOWED_HOSTS=*

# Set to True (capitalized) if you want people to be able to sign up for your Shynet instance (not recommended)
SIGNUPS_ENABLED=False
ACCOUNT_SIGNUPS_ENABLED=False

# Should user email addresses be verified? Only set this to `required` if you've setup the email settings and allow
# public sign-ups; otherwise, it's unnecessary.
Expand Down Expand Up @@ -59,8 +59,8 @@ PORT=8080
# Don't uncomment these unless you know what you are doing!
# NUM_WORKERS=1
# Make sure you set a REDIS_CACHE_LOCATION if you have more than one frontend worker/instance.
# REDIS_CACHE_LOCATION=redis://redis.default.svc.cluster.local/0
# REDIS_CACHE_LOCATION=redis://redis.default.svc.cluster.local/0
# If CELERY_BROKER_URL is set, make sure CELERY_TASK_ALWAYS_EAGER is False and
# that you have a separate queue consumer running somewhere via `celeryworker.sh`.
# CELERY_TASK_ALWAYS_EAGER=False
# CELERY_BROKER_URL=redis://redis.default.svc.cluster.local/1
# CELERY_BROKER_URL=redis://redis.default.svc.cluster.local/1
4 changes: 2 additions & 2 deletions app.json
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"value": "*",
"required": false
},
"SIGNUPS_ENABLED": {
"ACCOUNT_SIGNUPS_ENABLED": {
"description": "Set to True (capitalized) if you want people to be able to sign up for your Shynet instance (not recommended).",
"value": "False",
"required": false
Expand Down Expand Up @@ -119,4 +119,4 @@
"required": false
}
}
}
}
2 changes: 1 addition & 1 deletion kubernetes/secrets_template.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ stringData:
DEBUG: "False"
ALLOWED_HOSTS: "*" # For better security, set this to your deployment's domain. Comma separated.
DJANGO_SECRET_KEY: ""
SIGNUPS_ENABLED: "False"
ACCOUNT_SIGNUPS_ENABLED: "False"
TIME_ZONE: "America/New_York"

# Redis configuration (if you use the default Kubernetes config, this will work)
Expand Down

0 comments on commit c9b5a67

Please sign in to comment.