Dev passwords must be longer than or equal to 6 chars.

Refs #6
remotes/origin/no-uploadlimit-63
Stefan Verhoeven 9 years ago
parent 7bb64f62d8
commit 0da3b53207

@ -1,8 +1,8 @@
#!/bin/sh
SUBDOMAIN="dev"
PASSWORD="pass"
ADMIN_PASSWORD="pass"
PASSWORD="pass1234"
ADMIN_PASSWORD="pass1234"
EMAIL="dev@example.com"
echo "--- Creating databases"

@ -7,9 +7,9 @@ echo "insert into feature_flags (id,name, restricted) VALUES (2, 'georef_disable
ORGANIZATION_NAME="example"
USERNAME="admin4example"
EMAIL="admin@example.com"
PASSWORD="pass"
PASSWORD="pass1234"
rake cartodb:db:create_user EMAIL="${EMAIL}" PASSWORD="${PASSWORD}" SUBDOMAIN="${USERNAME}"
rake cartodb:db:set_unlimited_table_quota["${USERNAME}"]
rake cartodb:db:create_new_organization_with_owner ORGANIZATION_NAME="${ORGANIZATION_NAME}" USERNAME="${USERNAME}" ORGANIZATION_SEATS=100 ORGANIZATION_QUOTA=102400
rake cartodb:db:create_new_organization_with_owner ORGANIZATION_NAME="${ORGANIZATION_NAME}" USERNAME="${USERNAME}" ORGANIZATION_SEATS=100 ORGANIZATION_QUOTA=102400 ORGANIZATION_DISPLAY_NAME="${ORGANIZATION_NAME}"
rake cartodb:db:set_organization_quota[$ORGANIZATION_NAME,100]

Loading…
Cancel
Save