%%{init: {'theme': 'base', 'themeVariables': {
'primaryColor': '#2C3E50',
'secondaryColor': '#34495E',
'tertiaryColor': '#1ABC9C',
'primaryTextColor': '#FFFFFF',
'tertiaryTextColor': '#FFFFFF'
}}}%%
flowchart TB
This file contains hidden or 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
DATABASES = { | |
'default': { | |
'ENGINE': 'django.db.backends.postgresql', | |
'NAME': '<database_name>', | |
'USER':'<database_username>', # default 'postgres' | |
'PASSWORD':'<password>', # Password configured | |
'HOST':'<database_host_or_ip_address>' | |
} | |
} |
This file contains hidden or 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
# Default sqlite3 configuration | |
DATABASES = { | |
'default': { | |
'ENGINE': 'django.db.backends.postgresql', | |
'NAME': BASE_DIR / 'db.sqlite3', | |
} | |
} |
This file contains hidden or 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
languages = ["Python","Java","JavaScript","C"] | |
print(languages) | |
output: | |
['Python', 'Java', 'JavaScript', 'C'] |