-
Notifications
You must be signed in to change notification settings - Fork 0
Scaffolding an Elixir
Bell Eapen edited this page Nov 10, 2025
·
1 revision
Use the cookiecutter to quickly scaffold a new LangServe elixir with uv and best practices.
Template generator: https://github.com/dermatologist/cookiecutter-uv
- Ensure Python 3.9+ and
uvare installed. - Run cookiecutter and answer prompts.
- Implement your chain/agent logic in the generated app.
- Test locally and then install into DHTI.
# generate project
cookiecutter https://github.com/dermatologist/cookiecutter-uv
# install into DHTI
npx dhti-cli elixir install -g <your_repo_url> -n <your_name>
# start services
npx dhti-cli docker -u
See Elixirs for packaging and configuration.