generate hashes on server

This commit is contained in:
Bui
2020-03-17 01:27:06 +00:00
parent 5a68978ec4
commit fe90a35625
5 changed files with 54 additions and 5 deletions

View File

@@ -10,9 +10,12 @@ EMAIL = 'taiko@example.com'
# Whether to use the user account system.
ACCOUNTS = True
# Custom JavaScript file to load with the simulator.
CUSTOM_JS = ''
# MongoDB server settings.
MONGO = {
'host': ['localhost:27017'],
'host': ['127.0.0.1:27017'],
'database': 'taiko'
}