This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
## these need to be set | |
# initial account credentials | |
SEED_USER=admin | |
SEED_PASS=password | |
# required for new users to be able to sign up ; default to something random | |
INVITATION_CODE=`dd if=/dev/urandom bs=1024 count=1 | md5sum -` |