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
SECRET_KEY = "Change this to any random string"
# Database connection details
DB_CONN = {
"host": "127.0.0.1",
"port": 3306,
"username": "iissi_user",
"password": "iissi$user",
"database": "gallery",
}
# The sequence of SQL scripts located in the sql/ folder that must
# be ran when the 'silence createdb' command is issued
SQL_SCRIPTS = [
"create_tables.sql",
"create_views.sql",
"populate_database.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": "Users",
"identifier": "username",
"password": "password",
}