Joshua Harlow fcbb1fe3f1 Use python keyring package and move rc files to /etc/anvil (the new master location)
1. Move the rc files to /etc/anvil as well
2. Add in usage of python keyring package
   and use it to store/fetch passwords instead
   of our own yaml password storage. This also
   allows for us to use a encrypted password
   storage (not turned on by default) if desired
   which is a nice to have.
3. Passwords are now stored in 'passwords.cfg'
   under /etc/anvil (which should be fine for
   now and can be relocated via a cli option
   if desired)
2012-08-30 21:06:41 -07:00

12 lines
179 B
YAML

# Settings for component db
---
# Where you db is located at and how to access it.
host: localhost
port: 3306
type: mysql
user: root
wanted_passwords:
sql: "database user"
...