Skip to content
This repository has been archived by the owner on Mar 1, 2024. It is now read-only.

Latest commit

 

History

History
41 lines (26 loc) · 831 Bytes

cli.mdx

File metadata and controls

41 lines (26 loc) · 831 Bytes
title description icon
Wyvern CLI
Wyvern's command line tools
toolbox

wyvern init

Initializes Wyvern application template code

Arguments:

  • project str - Name of the project

wyvern redis

Starts Redis server. This command will also install redis locally if it's not installed.

wyvern run

Starts Wyvern application server

Arguments:

  • path str - Path to the wyvern app. The default path is pipelines.main:app
  • host str - Host to run the application on. The default host is 0.0.0.0
  • port int - Port to run the application on. The default port is 5001

Example usage:

# default mode:
wyvern run

# with arguments:
wyvern run --path pipelines.main:app --host 0.0.0.0 --port 5001

wyvern --help

List wyvern commands and what each command does