Permalink
Cannot retrieve contributors at this time
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?
isi2ibra/settings.py
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
40 lines (33 sloc)
1.09 KB
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
############################################################################### | |
# Project-specific settings | |
############################################################################### | |
# Shows debug messages while Silence is running | |
DEBUG_ENABLED = False | |
# 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 | |
USER_AUTH_DATA = { | |
"table": "Users", | |
"identifier": "username", | |
"password": "password", | |
} | |
# A random string that is used for security purposes | |
# (this has been generated automatically upon project creation) | |
SECRET_KEY = "Replace with your own key" |