Skip to content
Permalink
master
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
###############################################################################
# Project-specific settings
###############################################################################
# Shows debug messages while Silence is running
DEBUG_ENABLED = False
LISTEN_ADDRESS = "0.0.0.0"
# Database connection details
DB_CONN = {
"host": "db",
"port": 3306,
"username": "iissi_user",
"password": "user",
"database": "grados",
}
# The sequence of SQL scripts located in the sql/ folder that must
# be ran when the 'silence createdb' command is issued
SQL_SCRIPTS = [
# Reference your sql files here, e.g. "create_tables.sql"
]
# The port in which the API and the web server will be deployed
HTTP_PORT = 8080
# The URL prefix for all API endpoints
API_PREFIX = "/api/v1"
# Table and fields that are used for both login and register
# Uncomment this and set up your own table and columns:
#USER_AUTH_DATA = {
# "table": "Employees",
# "identifier": "email",
# "password": "password",
#}
# A random string that is used for security purposes
# (this has been generated automatically upon project creation)
SECRET_KEY = "ubYcOrG6kNRj3TPi0VBLInCR5zTKLxYy_Ew4Zw9UcbY"