1# The secret key is needed to keep the client-side sessions secure.
2# It's used for flask applications
3# You can generate some random key as below:
4
5>>> import os
6>>> os.urandom(24)
7'\xfd{H\xe5<\x95\xf9\xe3\x96.5\xd1\x01O<!\xd5\xa2\xa0\x9fR"\xa1\xa8'
8
9# Just take that key and copy/paste it into your config file
10
11SECRET_KEY = '\xfd{H\xe5<\x95\xf9\xe3\x96.5\xd1\x01O<!\xd5\xa2\xa0\x9fR"\xa1\xa8'