mirror of
https://github.com/cwinfo/powerdns-admin.git
synced 2024-11-14 01:20:27 +00:00
16 lines
334 B
Markdown
16 lines
334 B
Markdown
# Getting started with PowerDNS-Admin
|
|
|
|
|
|
In your `config.py` file, make sure you have the database URI filled in:
|
|
|
|
For MySQL / MariaDB:
|
|
```
|
|
SQLALCHEMY_DATABASE_URI = 'mysql://username:password@127.0.0.1/db_name'
|
|
```
|
|
|
|
For Postgres:
|
|
```
|
|
SQLALCHEMY_DATABASE_URI = 'postgresql://powerdnsadmin:powerdnsadmin@127.0.0.1/powerdnsadmindb'
|
|
```
|
|
|