This commit is contained in:
David Baldwynn 2017-03-06 16:38:57 -08:00
commit ff52274882
No known key found for this signature in database
GPG key ID: 15D1C13202224A9B
8 changed files with 25 additions and 13 deletions

View file

@ -10,7 +10,7 @@
"private": true,
"appPath": "public/modules",
"dependencies": {
"bootstrap": "~3",
"bootstrap": "^3.3.7",
"angular": "~1.4.7",
"angular-resource": "~1.4.7",
"angular-mocks": "~1.4.7",

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

View file

@ -48,7 +48,7 @@ section.auth {
background: transparent;
font-size: 16px;
border: 1px solid #ccc;
height: 34px;
min-height: 34px;
}
section.auth input {
@ -108,6 +108,8 @@ section.auth input.form-control {
}
input.form-control {
min-height: 30px!important;
height: 100% !important;
border-radius: 4px;
box-shadow: none;
font-size: 18px;

View file

@ -122,7 +122,7 @@ var questions = [
type: 'input',
name: 'BASE_URL',
message: 'What is the url your TellForm will be hosted at?',
default: '127.0.0.1'
default: 'localhost'
},
{
type: 'input',
@ -189,7 +189,7 @@ if(!fs.existsSync('./\.env')) {
var pass = answers['password'];
delete answers['email'];
delete answers['password'];
envfile.stringify(answers, function (err, str) {
fs.outputFile('./\.env', str, function (err) {
if (err) return console.error(chalk.red(err));