Create Lilypad Module is an officially supported way to create Lilypad modules. It offers a modern Docker build setup with minimal configuration.
If something doesn’t work, please file an issue.
If you have questions or need help, please ask in GitHub Discussions.
npx create-lilypad-module project_name
cd project_name
scripts/configure
scripts/build
scripts/run
If you've previously installed
create-lilypad-module
globally vianpm install -g create-lilypad-module
, we recommend you uninstall the package usingnpm uninstall -g create-lilypad-module
to ensure thatnpx
always uses the latest version.
Output:
project_name
├── scripts
│ ├── build
│ ├── configure
│ └── run
├── src
│ └── run_model
├── .dockerignore
├── .env
├── .gitignore
├── Dockerfile
├── lilypad_module.json.tmpl
└── README.md