Skip to content

cosmocode/cosmogo

Folders and files

NameName
Last commit message
Last commit date
Dec 19, 2023
Jan 29, 2020
Dec 12, 2024
Jan 8, 2020
Oct 8, 2019
Mar 23, 2022
Oct 18, 2019
Nov 6, 2024
Nov 11, 2020
Jan 29, 2020
Feb 7, 2019
Jan 19, 2024
Nov 19, 2024
Oct 8, 2019
Jan 8, 2020
Feb 6, 2017
Mar 18, 2024
Aug 17, 2020
Jan 17, 2020
Nov 22, 2019
Jun 6, 2024

Repository files navigation

Django Helpers from CosmoCode

init-db

To use the init-db command create an init-db.py file in your app's command module. Import the InitDBCommand class and create a class Command inheriting from the InitDBCommand. You can add your needed fixtures or overwrite the defaults for the parameters like so:

from cosmogo.commad import InitDBCommand


class Command(InitDBCommand):
    FIXTURES = (
        'fixture-one.json',
        ...
    )
    DEFAULTS = {
        'interactive': False,
        ...
    }