forked from kompetenzinventar/ki-backend
15 lines
277 B
Python
15 lines
277 B
Python
# SPDX-FileCopyrightText: WTF Kooperative eG <https://wtf-eg.de/>
|
|
#
|
|
# SPDX-License-Identifier: AGPL-3.0-or-later
|
|
|
|
import click
|
|
|
|
from app import app
|
|
from ki.actions import seed
|
|
|
|
|
|
@app.cli.command("seed")
|
|
@click.option("--dev", is_flag=True)
|
|
def seed_command(dev):
|
|
seed(dev)
|