# 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',
},
}
}
I’m an event description. Click here to open up the Event Editor and change my text. I’m a great place for you to say a little more about your upcoming event.
Conference Center, 500 Terry Francois St. San Francisco, CA 94158
About the event
I’m an event description. Click here to open up the Event Editor and change my text. Simply click me, Manage Event and start editing your event. I’m a great place for you to say a little more about your upcoming event.
Tickets
Ticket type
Early Bird
Price
١٠٠٫٠٠ US$
+٢٫٥٠ US$ ticket service fee
Sale ended
Share this event
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',
},
}
}