Hugging Face
Models
Datasets
Spaces
Posts
Docs
Enterprise
Pricing
Log In
Sign Up
Spaces:
kenken999
/
fastapi_django_main_live
like
5
Running
on
Zero
App
Files
Files
Community
3af7f80
fastapi_django_main_live
/
routers
/
ai
/
app
/
settings.py
kenken999
sd
185f702
6 months ago
raw
Copy download link
history
blame
240 Bytes
DATABASES = {
'default'
: {
'ENGINE'
:
'django.db.backends.postgresql'
,
'NAME'
:
'mydatabase'
,
'USER'
:
'mydatabaseuser'
,
'PASSWORD'
:
'mypassword'
,
'HOST'
:
'localhost'
,
'PORT'
:
'5432'
,
}
}