1
0

fixed signup_disabled in setup script

This commit is contained in:
David Baldwynn 2016-05-10 01:07:36 -07:00
parent ca0ebe8c65
commit 7065a4a37a
2 changed files with 23 additions and 4 deletions

4
config/env/all.js vendored
View File

@ -10,7 +10,9 @@ module.exports = {
port: process.env.PORT || 3000,
templateEngine: 'swig',
signupDisabled: !!process.env.SIGNUP_DISABLED || false,
reCAPTCHA_Key: process.env.reCAPTCHA_KEY || '',
signupDisabled: false ? (!process.env.SIGNUP_DISABLED || !process.env.SIGNUP_DISABLED === 'false') : true,
baseUrl: '',
tempUserCollection: 'temporary_users',

View File

@ -89,12 +89,12 @@ var questions = [
{
type: 'input',
name: 'APP_DESC',
message: 'Describe your project (for SEO)'
message: 'Describe your project (for SEO) (optional)'
},
{
type: 'input',
name: 'APP_KEYWORDS',
message: 'What keywords are relevant to your project (seperate by commas)'
message: 'What keywords are relevant to your project (seperate by commas) (optional)'
},
{
type: 'confirm',
@ -138,7 +138,22 @@ var questions = [
{
type: 'input',
name: 'GOOGLE_ANALYTICS_ID',
message: 'What is your Google Analytics Tag?'
message: 'What is your Google Analytics Tag? (optional)'
},
{
type: 'input',
name: 'RAVEN_DSN',
message: 'What is your Private Raven DSN key? (optional)'
},
{
type: 'input',
name: 'PRERENDER_TOKEN',
message: 'What is your Prerender.io token? (optional)'
},
{
type: 'input',
name: 'COVERALLS_REPO_TOKEN',
message: 'What is your Coveralls.io token? (optional)'
},
{
type: 'input',
@ -161,6 +176,8 @@ inquirer.prompt([questions[0]]).then(function (confirmAns) {
inquirer.prompt(questions.slice(1)).then(function (answers) {
answers['NODE_ENV'] = 'production';
answers['SIGNUP_DISABLED'] = false ? answers['SIGNUP_DISABLED'] === false : true;
var email = answers['email'];
var pass = answers['password'];