We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2c27eae commit 0eb5a3bCopy full SHA for 0eb5a3b
llmstack/cli.py
@@ -255,7 +255,12 @@ def signal_handler(sig, frame):
255
256
subparsers = parser.add_subparsers(dest="command")
257
subparsers.add_parser("runserver")
258
- subparsers.add_parser("manage.py")
+
259
+ # Django manage.py command setup
260
+ manage_py_command = subparsers.add_parser("manage.py")
261
+ manage_py_command.add_argument(
262
+ "manage_py_subcommand", help="Type 'manage.py <subcommand>' for a specific subcommand."
263
+ )
264
265
# Load environment variables from config under [llmstack] section
266
llmstack_environment = {}
0 commit comments