create-lilypad-module
v0.0.46
Published
Create Lilypad modules with a modern Docker setup and minimal configuration.
Maintainers
Readme
Create Lilypad Module
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.
Getting Started
npx create-lilypad-module project_name
cd project_name
scripts/configure
scripts/build
scripts/runIf you've previously installed
create-lilypad-moduleglobally vianpm install -g create-lilypad-module, we recommend you uninstall the package usingnpm uninstall -g create-lilypad-moduleto ensure thatnpxalways uses the latest version.
Output:
project_name
├── scripts
│ ├── build
│ ├── configure
│ └── run
├── src
│ └── run_model
├── .dockerignore
├── .env
├── .gitignore
├── Dockerfile
├── lilypad_module.json.tmpl
└── README.md