# Add these at the top of your settings.py from os import getenv from dotenv import load_dotenv # Replace the DATABASES section of your settings.py with this DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', 'NAME': getenv('PGDATABASE'), 'USER': getenv('PGUSER'), 'PASSWORD': getenv('PGPASSWORD'), 'HOST': getenv('PGHOST'), 'PORT': getenv('PGPORT', 5432), 'OPTIONS': { 'sslmode': 'require', }, } } # Add these at the top of your settings.py from os import getenv from dotenv import load_dotenv # Replace the DATABASES section of your settings.py with this DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', 'NAME': getenv('PGDATABASE'), 'USER': getenv('PGUSER'), 'PASSWORD': getenv('PGPASSWORD'), 'HOST': getenv('PGHOST'), 'PORT': getenv('PGPORT', 5432), 'OPTIONS': { 'sslmode': 'require', }, } }
top of page
!

Tech. Innovation Conference 2023

STAY AHEAD OF THE INDUSTRY

What

Tech. Innovation
Conference 2023

When

August 1st, 2023

Where

500 Terry Francois Street

San Francisco, CA 94158

!

Contact Us

To learn more, don’t hesitate to get in touch

Thanks for submitting!

  • Facebook
  • Instagram
  • Twitter
  • LinkedIn

© 2023 by TIC. Proudly created with Wix.com

bottom of page
# Add these at the top of your settings.py from os import getenv from dotenv import load_dotenv # Replace the DATABASES section of your settings.py with this DATABASES = { 'default': { 'ENGINE': 'django.db.backends.postgresql', 'NAME': getenv('PGDATABASE'), 'USER': getenv('PGUSER'), 'PASSWORD': getenv('PGPASSWORD'), 'HOST': getenv('PGHOST'), 'PORT': getenv('PGPORT', 5432), 'OPTIONS': { 'sslmode': 'require', }, } }