mirror of
https://github.com/fergalmoran/bitchmin.git
synced 2026-02-15 12:24:05 +00:00
8 lines
133 B
Python
8 lines
133 B
Python
import os
|
|
|
|
from .config import Config
|
|
|
|
|
|
class ProductionConfig(Config):
|
|
SQLALCHEMY_DATABASE_URI = os.environ.get('DATABASE_URL')
|