Would this key have to be the same in all applications in your case? auth.settings.hmac_key = 'sha512:63f0a5e7-e395-4a28-8488-cf072a0464b6' # before define_tables()
not the same as this particular one but consistent across all of the applications you have since you are sharing your auth_user table and this key is used to encrypt the password field of the table. This line is in the original models/db.py file of the application. Ron

