ffplayout/docs/developer-info.md
2020-05-05 11:38:35 +02:00

387 B

Backend Apps

If you planing to extend the backend with your own apps (api endpoints), just add your app in folder: ffplayout/apps.

If you planing to us a DB, put a settings.py file in your app. With this object:

DATABASES = {
    'default': {
        'ENGINE': 'django.db.backends.sqlite3',
        'NAME': os.path.join(BASE_DIR, 'db-name.sqlite3'),
    }
}