- create a new redis .conf file
$ cp /etc/redis.conf /etc/redis-xxx.conf- edit /etc/redis-xxx.conf, illustrated as below
...| blueprint: | |
| name: Set Indicator Light on Scene Controller | |
| description: For Zooz ZEN32. Sets the indicator color when light is off or dimmed. | |
| domain: automation | |
| input: | |
| zooz_switch: | |
| name: Zooz Switch | |
| description: List of available Zooz ZEN32 switches. | |
| selector: | |
| device: |
| blueprint: | |
| name: Control Light with Scene Controller | |
| description: For Zooz ZEN32. Toggle a light with a single press, set it to max brightness with double-tap, night-light mode with hold. | |
| domain: automation | |
| input: | |
| zooz_switch: | |
| name: Zooz Switch | |
| description: List of available Zooz ZEN32 switches. | |
| selector: | |
| device: |
| import boto.mturk.connection | |
| sandbox_host = 'mechanicalturk.sandbox.amazonaws.com' | |
| real_host = 'mechanicalturk.amazonaws.com' | |
| mturk = boto.mturk.connection.MTurkConnection( | |
| aws_access_key_id = 'XXX', | |
| aws_secret_access_key = 'XXX', | |
| host = sandbox_host, | |
| debug = 1 # debug = 2 prints out all requests. but we'll just keep it at 1 |
$ cp /etc/redis.conf /etc/redis-xxx.conf...| # Create your superuser | |
| $ mongo | |
| > use admin | |
| > db.createUser({user:"someadmin",pwd:"secret", roles:[{role:"root",db:"admin"}]}) | |
| > exit | |
| # Alias for convenience (optional and at your own risk) | |
| $ echo 'alias mongo="mongo --port 27017 -u someadmin -p secret --authenticationDatabase admin"' >> ~/.bash_profile | |
| $ source ~/.bash_profile |