Getting Started

Getting started with `create-lilypad-module`

Installation

First, you'll need to install the package:

pip install create-lilypad-module

If you've previously installed create-lilypad-module, you should to ensure that you're using the latest version:

pip install --upgrade create-lilypad-module

Now run create-lilypad-module:

create-lilypad-module

The CLI will ask for the name of your project. Alternatively, you can run:

create-lilypad-module project_name
cd project_name

Output

project_name
β”œβ”€β”€ config
β”‚   └── constants.py
β”œβ”€β”€ scripts
β”‚   β”œβ”€β”€ docker_build.py
β”‚   β”œβ”€β”€ download_models.py
β”‚   └── run_module.py
β”œβ”€β”€ src
β”‚   └── run_inference.py
β”œβ”€β”€ .dockerignore
β”œβ”€β”€ .env
β”œβ”€β”€ .gitignore
β”œβ”€β”€ Dockerfile
β”œβ”€β”€ lilypad_module.json.tmpl
β”œβ”€β”€ README.md
└── requirements.txt

Last updated

Was this helpful?