mirror of
https://github.com/viq/NewsBlur.git
synced 2025-11-01 09:09:16 +00:00
8 lines
254 B
Python
8 lines
254 B
Python
|
|
#!/srv/newsblur/venv/newsblur3/bin/python
|
||
|
|
import sys
|
||
|
|
sys.path.append('/srv/newsblur')
|
||
|
|
from newsblur_web import settings
|
||
|
|
|
||
|
|
username = settings.DATABASES['default']['USER']
|
||
|
|
password = settings.DATABASES['default']['PASSWORD']
|
||
|
|
print(f"{username}:{password}")
|