@elizaos/cli 1.0.0-beta.6 → 1.0.0-beta.60
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +1 -1
- package/README.md +419 -135
- package/dist/assets/index-BO8PZoFa.js +140868 -0
- package/dist/assets/index-BO8PZoFa.js.map +1 -0
- package/dist/assets/index-D7yixpTW.css +1 -0
- package/dist/assets/index-D7yixpTW.css.br +0 -0
- package/dist/assets/index-JETS9QJD.js +7501 -0
- package/dist/assets/index-JETS9QJD.js.br +0 -0
- package/dist/assets/index-JETS9QJD.js.map +1 -0
- package/dist/assets/vendor-DaQtate6.js +3318 -0
- package/dist/assets/vendor-DaQtate6.js.br +0 -0
- package/dist/assets/vendor-DaQtate6.js.map +1 -0
- package/dist/chunk-4GWXFSTA.js +77 -0
- package/dist/{chunk-QY4IXWF5.js → chunk-K5K3ELE6.js} +130 -71
- package/dist/chunk-KTZGRSOG.js +667 -0
- package/dist/{chunk-5Z47LKWX.js → chunk-LJ7GG5DV.js} +316 -237
- package/dist/chunk-LJEX5CRU.js +376 -0
- package/dist/chunk-MOER7RL6.js +336 -0
- package/dist/chunk-NCHNXTOV.js +499 -0
- package/dist/{chunk-O3UP5QHP.js → chunk-P2T7CVJS.js} +53 -41
- package/dist/chunk-QPT4EKWR.js +13440 -0
- package/dist/chunk-SRCYMFXL.js +331 -0
- package/dist/{chunk-MIME4LLQ.js → chunk-SVTNOUN7.js} +7576 -1386
- package/dist/{chunk-XDVWGVQZ.js → chunk-UV3LBK64.js} +6 -5
- package/dist/{chunk-5LH7NKB4.js → chunk-W4LNCUVN.js} +801 -22
- package/dist/{chunk-QAYPXYFB.js → chunk-ZWYIWZII.js} +47965 -71389
- package/dist/commands/agent.d.ts +27 -0
- package/dist/commands/agent.js +12 -9
- package/dist/commands/create.d.ts +15 -0
- package/dist/commands/create.js +5 -12
- package/dist/commands/dev.d.ts +8 -0
- package/dist/commands/dev.js +5 -8
- package/dist/commands/env.d.ts +16 -0
- package/dist/commands/env.js +10 -10
- package/dist/commands/plugins.d.ts +19 -0
- package/dist/commands/plugins.js +23 -0
- package/dist/commands/publish.d.ts +5 -0
- package/dist/commands/publish.js +5 -11
- package/dist/commands/setup-monorepo.d.ts +5 -0
- package/dist/commands/setup-monorepo.js +15 -0
- package/dist/commands/start.d.ts +120 -0
- package/dist/commands/start.js +8 -22
- package/dist/commands/tee.d.ts +5 -0
- package/dist/commands/tee.js +2 -4
- package/dist/commands/test.d.ts +6 -0
- package/dist/commands/test.js +7 -17
- package/dist/commands/update.d.ts +10 -0
- package/dist/commands/update.js +6 -9
- package/dist/{eliza-GWTDNYUZ.js → eliza-F32HYVGC.js} +2 -2
- package/dist/index.d.ts +1 -0
- package/dist/index.html +3 -2
- package/dist/index.js +48 -47
- package/dist/{registry-5JHHV7LG.js → registry-WEKQIJ6X.js} +7 -8
- package/package.json +18 -13
- package/templates/plugin-starter/README.md +132 -1
- package/templates/plugin-starter/__tests__/integration.test.ts +133 -0
- package/templates/plugin-starter/__tests__/plugin.test.ts +182 -0
- package/templates/plugin-starter/__tests__/test-utils.ts +162 -0
- package/templates/plugin-starter/e2e/starter-plugin.test.ts +177 -0
- package/templates/plugin-starter/images/README.md +24 -0
- package/templates/plugin-starter/package.json +18 -9
- package/templates/plugin-starter/src/index.ts +1 -37
- package/templates/plugin-starter/tsconfig.json +1 -2
- package/templates/plugin-starter/vitest.config.ts +16 -0
- package/templates/project-starter/.env.example +46 -0
- package/templates/project-starter/README.md +110 -1
- package/templates/project-starter/__tests__/actions.test.ts +155 -0
- package/templates/project-starter/__tests__/character.test.ts +90 -0
- package/templates/project-starter/__tests__/config.test.ts +192 -0
- package/templates/project-starter/__tests__/env.test.ts +87 -0
- package/templates/project-starter/__tests__/error-handling.test.ts +177 -0
- package/templates/project-starter/__tests__/events.test.ts +144 -0
- package/templates/project-starter/__tests__/file-structure.test.ts +135 -0
- package/templates/project-starter/__tests__/integration.test.ts +209 -0
- package/templates/project-starter/__tests__/models.test.ts +152 -0
- package/templates/project-starter/__tests__/plugin.test.ts +390 -0
- package/templates/project-starter/__tests__/provider.test.ts +321 -0
- package/templates/project-starter/__tests__/routes.test.ts +79 -0
- package/templates/project-starter/__tests__/test-utils.ts +121 -0
- package/templates/project-starter/__tests__/utils/core-test-utils.ts +167 -0
- package/templates/project-starter/e2e/project.test.ts +34 -0
- package/templates/project-starter/{src/tests.ts → e2e/starter-plugin.test.ts} +43 -9
- package/templates/project-starter/elizadb/.s.PGSQL.5432.lock.out +0 -0
- package/templates/project-starter/elizadb/PG_VERSION +1 -0
- package/templates/project-starter/elizadb/base/1/112 +0 -0
- package/templates/project-starter/elizadb/base/1/113 +0 -0
- package/templates/project-starter/elizadb/base/1/1247 +0 -0
- package/templates/project-starter/elizadb/base/1/1247_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/1247_vm +0 -0
- package/templates/project-starter/elizadb/base/1/1249 +0 -0
- package/templates/project-starter/elizadb/base/1/1249_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/1249_vm +0 -0
- package/templates/project-starter/elizadb/base/1/1255 +0 -0
- package/templates/project-starter/elizadb/base/1/1255_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/1255_vm +0 -0
- package/templates/project-starter/elizadb/base/1/1259 +0 -0
- package/templates/project-starter/elizadb/base/1/12590 +0 -0
- package/templates/project-starter/elizadb/base/1/12590_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/12590_vm +0 -0
- package/templates/project-starter/elizadb/base/1/12593 +0 -0
- package/templates/project-starter/elizadb/base/1/12594 +0 -0
- package/templates/project-starter/elizadb/base/1/12595 +0 -0
- package/templates/project-starter/elizadb/base/1/12595_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/12595_vm +0 -0
- package/templates/project-starter/elizadb/base/1/12598 +0 -0
- package/templates/project-starter/elizadb/base/1/12599 +0 -0
- package/templates/project-starter/elizadb/base/1/1259_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/1259_vm +0 -0
- package/templates/project-starter/elizadb/base/1/12600 +0 -0
- package/templates/project-starter/elizadb/base/1/12600_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/12600_vm +0 -0
- package/templates/project-starter/elizadb/base/1/12603 +0 -0
- package/templates/project-starter/elizadb/base/1/12604 +0 -0
- package/templates/project-starter/elizadb/base/1/12605 +0 -0
- package/templates/project-starter/elizadb/base/1/12605_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/12605_vm +0 -0
- package/templates/project-starter/elizadb/base/1/12608 +0 -0
- package/templates/project-starter/elizadb/base/1/12609 +0 -0
- package/templates/project-starter/elizadb/base/1/1417 +0 -0
- package/templates/project-starter/elizadb/base/1/1418 +0 -0
- package/templates/project-starter/elizadb/base/1/16384 +0 -0
- package/templates/project-starter/elizadb/base/1/16385 +0 -0
- package/templates/project-starter/elizadb/base/1/16389 +0 -0
- package/templates/project-starter/elizadb/base/1/16390 +0 -0
- package/templates/project-starter/elizadb/base/1/16391 +0 -0
- package/templates/project-starter/elizadb/base/1/16733 +0 -0
- package/templates/project-starter/elizadb/base/1/16750 +0 -0
- package/templates/project-starter/elizadb/base/1/16751 +0 -0
- package/templates/project-starter/elizadb/base/1/16752 +0 -0
- package/templates/project-starter/elizadb/base/1/16754 +0 -0
- package/templates/project-starter/elizadb/base/1/16756 +0 -0
- package/templates/project-starter/elizadb/base/1/16761 +0 -0
- package/templates/project-starter/elizadb/base/1/16762 +0 -0
- package/templates/project-starter/elizadb/base/1/16763 +0 -0
- package/templates/project-starter/elizadb/base/1/16765 +0 -0
- package/templates/project-starter/elizadb/base/1/16767 +0 -0
- package/templates/project-starter/elizadb/base/1/16773 +0 -0
- package/templates/project-starter/elizadb/base/1/16774 +0 -0
- package/templates/project-starter/elizadb/base/1/16775 +0 -0
- package/templates/project-starter/elizadb/base/1/16777 +0 -0
- package/templates/project-starter/elizadb/base/1/16783 +0 -0
- package/templates/project-starter/elizadb/base/1/16784 +0 -0
- package/templates/project-starter/elizadb/base/1/16785 +0 -0
- package/templates/project-starter/elizadb/base/1/16787 +0 -0
- package/templates/project-starter/elizadb/base/1/16793 +0 -0
- package/templates/project-starter/elizadb/base/1/16794 +0 -0
- package/templates/project-starter/elizadb/base/1/16795 +0 -0
- package/templates/project-starter/elizadb/base/1/16797 +0 -0
- package/templates/project-starter/elizadb/base/1/16799 +0 -0
- package/templates/project-starter/elizadb/base/1/16804 +0 -0
- package/templates/project-starter/elizadb/base/1/16805 +0 -0
- package/templates/project-starter/elizadb/base/1/16806 +0 -0
- package/templates/project-starter/elizadb/base/1/16814 +0 -0
- package/templates/project-starter/elizadb/base/1/16815 +0 -0
- package/templates/project-starter/elizadb/base/1/16816 +0 -0
- package/templates/project-starter/elizadb/base/1/16818 +0 -0
- package/templates/project-starter/elizadb/base/1/16823 +0 -0
- package/templates/project-starter/elizadb/base/1/16824 +0 -0
- package/templates/project-starter/elizadb/base/1/16825 +0 -0
- package/templates/project-starter/elizadb/base/1/16827 +0 -0
- package/templates/project-starter/elizadb/base/1/16832 +0 -0
- package/templates/project-starter/elizadb/base/1/16833 +0 -0
- package/templates/project-starter/elizadb/base/1/16834 +0 -0
- package/templates/project-starter/elizadb/base/1/16836 +0 -0
- package/templates/project-starter/elizadb/base/1/16838 +0 -0
- package/templates/project-starter/elizadb/base/1/16843 +0 -0
- package/templates/project-starter/elizadb/base/1/16844 +0 -0
- package/templates/project-starter/elizadb/base/1/16845 +0 -0
- package/templates/project-starter/elizadb/base/1/16847 +0 -0
- package/templates/project-starter/elizadb/base/1/16855 +0 -0
- package/templates/project-starter/elizadb/base/1/16856 +0 -0
- package/templates/project-starter/elizadb/base/1/16857 +0 -0
- package/templates/project-starter/elizadb/base/1/16859 +0 -0
- package/templates/project-starter/elizadb/base/1/16864 +0 -0
- package/templates/project-starter/elizadb/base/1/16865 +0 -0
- package/templates/project-starter/elizadb/base/1/16866 +0 -0
- package/templates/project-starter/elizadb/base/1/17023 +0 -0
- package/templates/project-starter/elizadb/base/1/17024 +0 -0
- package/templates/project-starter/elizadb/base/1/17025 +0 -0
- package/templates/project-starter/elizadb/base/1/17026 +0 -0
- package/templates/project-starter/elizadb/base/1/17027 +0 -0
- package/templates/project-starter/elizadb/base/1/17028 +0 -0
- package/templates/project-starter/elizadb/base/1/17029 +0 -0
- package/templates/project-starter/elizadb/base/1/17030 +0 -0
- package/templates/project-starter/elizadb/base/1/17031 +0 -0
- package/templates/project-starter/elizadb/base/1/174 +0 -0
- package/templates/project-starter/elizadb/base/1/175 +0 -0
- package/templates/project-starter/elizadb/base/1/2187 +0 -0
- package/templates/project-starter/elizadb/base/1/2224 +0 -0
- package/templates/project-starter/elizadb/base/1/2228 +0 -0
- package/templates/project-starter/elizadb/base/1/2328 +0 -0
- package/templates/project-starter/elizadb/base/1/2336 +0 -0
- package/templates/project-starter/elizadb/base/1/2337 +0 -0
- package/templates/project-starter/elizadb/base/1/2579 +0 -0
- package/templates/project-starter/elizadb/base/1/2600 +0 -0
- package/templates/project-starter/elizadb/base/1/2600_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2600_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2601 +0 -0
- package/templates/project-starter/elizadb/base/1/2601_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2601_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2602 +0 -0
- package/templates/project-starter/elizadb/base/1/2602_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2602_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2603 +0 -0
- package/templates/project-starter/elizadb/base/1/2603_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2603_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2604 +0 -0
- package/templates/project-starter/elizadb/base/1/2604_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2605 +0 -0
- package/templates/project-starter/elizadb/base/1/2605_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2605_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2606 +0 -0
- package/templates/project-starter/elizadb/base/1/2606_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2606_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2607 +0 -0
- package/templates/project-starter/elizadb/base/1/2607_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2607_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2608 +0 -0
- package/templates/project-starter/elizadb/base/1/2608_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2608_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2609 +0 -0
- package/templates/project-starter/elizadb/base/1/2609_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2609_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2610 +0 -0
- package/templates/project-starter/elizadb/base/1/2610_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2610_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2611 +0 -0
- package/templates/project-starter/elizadb/base/1/2612 +0 -0
- package/templates/project-starter/elizadb/base/1/2612_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2612_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2613 +0 -0
- package/templates/project-starter/elizadb/base/1/2615 +0 -0
- package/templates/project-starter/elizadb/base/1/2615_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2615_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2616 +0 -0
- package/templates/project-starter/elizadb/base/1/2616_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2616_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2617 +0 -0
- package/templates/project-starter/elizadb/base/1/2617_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2617_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2618 +0 -0
- package/templates/project-starter/elizadb/base/1/2618_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2618_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2619 +0 -0
- package/templates/project-starter/elizadb/base/1/2619_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2619_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2620 +0 -0
- package/templates/project-starter/elizadb/base/1/2620_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2650 +0 -0
- package/templates/project-starter/elizadb/base/1/2651 +0 -0
- package/templates/project-starter/elizadb/base/1/2652 +0 -0
- package/templates/project-starter/elizadb/base/1/2653 +0 -0
- package/templates/project-starter/elizadb/base/1/2654 +0 -0
- package/templates/project-starter/elizadb/base/1/2655 +0 -0
- package/templates/project-starter/elizadb/base/1/2656 +0 -0
- package/templates/project-starter/elizadb/base/1/2657 +0 -0
- package/templates/project-starter/elizadb/base/1/2658 +0 -0
- package/templates/project-starter/elizadb/base/1/2659 +0 -0
- package/templates/project-starter/elizadb/base/1/2660 +0 -0
- package/templates/project-starter/elizadb/base/1/2661 +0 -0
- package/templates/project-starter/elizadb/base/1/2662 +0 -0
- package/templates/project-starter/elizadb/base/1/2663 +0 -0
- package/templates/project-starter/elizadb/base/1/2664 +0 -0
- package/templates/project-starter/elizadb/base/1/2665 +0 -0
- package/templates/project-starter/elizadb/base/1/2666 +0 -0
- package/templates/project-starter/elizadb/base/1/2667 +0 -0
- package/templates/project-starter/elizadb/base/1/2668 +0 -0
- package/templates/project-starter/elizadb/base/1/2669 +0 -0
- package/templates/project-starter/elizadb/base/1/2670 +0 -0
- package/templates/project-starter/elizadb/base/1/2673 +0 -0
- package/templates/project-starter/elizadb/base/1/2674 +0 -0
- package/templates/project-starter/elizadb/base/1/2675 +0 -0
- package/templates/project-starter/elizadb/base/1/2678 +0 -0
- package/templates/project-starter/elizadb/base/1/2679 +0 -0
- package/templates/project-starter/elizadb/base/1/2680 +0 -0
- package/templates/project-starter/elizadb/base/1/2681 +0 -0
- package/templates/project-starter/elizadb/base/1/2682 +0 -0
- package/templates/project-starter/elizadb/base/1/2683 +0 -0
- package/templates/project-starter/elizadb/base/1/2684 +0 -0
- package/templates/project-starter/elizadb/base/1/2685 +0 -0
- package/templates/project-starter/elizadb/base/1/2686 +0 -0
- package/templates/project-starter/elizadb/base/1/2687 +0 -0
- package/templates/project-starter/elizadb/base/1/2688 +0 -0
- package/templates/project-starter/elizadb/base/1/2689 +0 -0
- package/templates/project-starter/elizadb/base/1/2690 +0 -0
- package/templates/project-starter/elizadb/base/1/2691 +0 -0
- package/templates/project-starter/elizadb/base/1/2692 +0 -0
- package/templates/project-starter/elizadb/base/1/2693 +0 -0
- package/templates/project-starter/elizadb/base/1/2696 +0 -0
- package/templates/project-starter/elizadb/base/1/2699 +0 -0
- package/templates/project-starter/elizadb/base/1/2701 +0 -0
- package/templates/project-starter/elizadb/base/1/2702 +0 -0
- package/templates/project-starter/elizadb/base/1/2703 +0 -0
- package/templates/project-starter/elizadb/base/1/2704 +0 -0
- package/templates/project-starter/elizadb/base/1/2753 +0 -0
- package/templates/project-starter/elizadb/base/1/2753_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2753_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2754 +0 -0
- package/templates/project-starter/elizadb/base/1/2755 +0 -0
- package/templates/project-starter/elizadb/base/1/2756 +0 -0
- package/templates/project-starter/elizadb/base/1/2757 +0 -0
- package/templates/project-starter/elizadb/base/1/2830 +0 -0
- package/templates/project-starter/elizadb/base/1/2831 +0 -0
- package/templates/project-starter/elizadb/base/1/2832 +0 -0
- package/templates/project-starter/elizadb/base/1/2833 +0 -0
- package/templates/project-starter/elizadb/base/1/2834 +0 -0
- package/templates/project-starter/elizadb/base/1/2835 +0 -0
- package/templates/project-starter/elizadb/base/1/2836 +0 -0
- package/templates/project-starter/elizadb/base/1/2836_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2836_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2837 +0 -0
- package/templates/project-starter/elizadb/base/1/2838 +0 -0
- package/templates/project-starter/elizadb/base/1/2838_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2838_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2839 +0 -0
- package/templates/project-starter/elizadb/base/1/2840 +0 -0
- package/templates/project-starter/elizadb/base/1/2840_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/2840_vm +0 -0
- package/templates/project-starter/elizadb/base/1/2841 +0 -0
- package/templates/project-starter/elizadb/base/1/2995 +0 -0
- package/templates/project-starter/elizadb/base/1/2996 +0 -0
- package/templates/project-starter/elizadb/base/1/3079 +0 -0
- package/templates/project-starter/elizadb/base/1/3079_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/3079_vm +0 -0
- package/templates/project-starter/elizadb/base/1/3080 +0 -0
- package/templates/project-starter/elizadb/base/1/3081 +0 -0
- package/templates/project-starter/elizadb/base/1/3085 +0 -0
- package/templates/project-starter/elizadb/base/1/3118 +0 -0
- package/templates/project-starter/elizadb/base/1/3119 +0 -0
- package/templates/project-starter/elizadb/base/1/3164 +0 -0
- package/templates/project-starter/elizadb/base/1/3256 +0 -0
- package/templates/project-starter/elizadb/base/1/3257 +0 -0
- package/templates/project-starter/elizadb/base/1/3258 +0 -0
- package/templates/project-starter/elizadb/base/1/3350 +0 -0
- package/templates/project-starter/elizadb/base/1/3351 +0 -0
- package/templates/project-starter/elizadb/base/1/3379 +0 -0
- package/templates/project-starter/elizadb/base/1/3380 +0 -0
- package/templates/project-starter/elizadb/base/1/3381 +0 -0
- package/templates/project-starter/elizadb/base/1/3394 +0 -0
- package/templates/project-starter/elizadb/base/1/3394_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/3394_vm +0 -0
- package/templates/project-starter/elizadb/base/1/3395 +0 -0
- package/templates/project-starter/elizadb/base/1/3429 +0 -0
- package/templates/project-starter/elizadb/base/1/3430 +0 -0
- package/templates/project-starter/elizadb/base/1/3431 +0 -0
- package/templates/project-starter/elizadb/base/1/3433 +0 -0
- package/templates/project-starter/elizadb/base/1/3439 +0 -0
- package/templates/project-starter/elizadb/base/1/3440 +0 -0
- package/templates/project-starter/elizadb/base/1/3455 +0 -0
- package/templates/project-starter/elizadb/base/1/3456 +0 -0
- package/templates/project-starter/elizadb/base/1/3456_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/3456_vm +0 -0
- package/templates/project-starter/elizadb/base/1/3466 +0 -0
- package/templates/project-starter/elizadb/base/1/3467 +0 -0
- package/templates/project-starter/elizadb/base/1/3468 +0 -0
- package/templates/project-starter/elizadb/base/1/3501 +0 -0
- package/templates/project-starter/elizadb/base/1/3502 +0 -0
- package/templates/project-starter/elizadb/base/1/3503 +0 -0
- package/templates/project-starter/elizadb/base/1/3534 +0 -0
- package/templates/project-starter/elizadb/base/1/3541 +0 -0
- package/templates/project-starter/elizadb/base/1/3541_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/3541_vm +0 -0
- package/templates/project-starter/elizadb/base/1/3542 +0 -0
- package/templates/project-starter/elizadb/base/1/3574 +0 -0
- package/templates/project-starter/elizadb/base/1/3575 +0 -0
- package/templates/project-starter/elizadb/base/1/3576 +0 -0
- package/templates/project-starter/elizadb/base/1/3596 +0 -0
- package/templates/project-starter/elizadb/base/1/3597 +0 -0
- package/templates/project-starter/elizadb/base/1/3598 +0 -0
- package/templates/project-starter/elizadb/base/1/3599 +0 -0
- package/templates/project-starter/elizadb/base/1/3600 +0 -0
- package/templates/project-starter/elizadb/base/1/3600_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/3600_vm +0 -0
- package/templates/project-starter/elizadb/base/1/3601 +0 -0
- package/templates/project-starter/elizadb/base/1/3601_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/3601_vm +0 -0
- package/templates/project-starter/elizadb/base/1/3602 +0 -0
- package/templates/project-starter/elizadb/base/1/3602_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/3602_vm +0 -0
- package/templates/project-starter/elizadb/base/1/3603 +0 -0
- package/templates/project-starter/elizadb/base/1/3603_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/3603_vm +0 -0
- package/templates/project-starter/elizadb/base/1/3604 +0 -0
- package/templates/project-starter/elizadb/base/1/3605 +0 -0
- package/templates/project-starter/elizadb/base/1/3606 +0 -0
- package/templates/project-starter/elizadb/base/1/3607 +0 -0
- package/templates/project-starter/elizadb/base/1/3608 +0 -0
- package/templates/project-starter/elizadb/base/1/3609 +0 -0
- package/templates/project-starter/elizadb/base/1/3712 +0 -0
- package/templates/project-starter/elizadb/base/1/3764 +0 -0
- package/templates/project-starter/elizadb/base/1/3764_fsm +0 -0
- package/templates/project-starter/elizadb/base/1/3764_vm +0 -0
- package/templates/project-starter/elizadb/base/1/3766 +0 -0
- package/templates/project-starter/elizadb/base/1/3767 +0 -0
- package/templates/project-starter/elizadb/base/1/3997 +0 -0
- package/templates/project-starter/elizadb/base/1/4143 +0 -0
- package/templates/project-starter/elizadb/base/1/4144 +0 -0
- package/templates/project-starter/elizadb/base/1/4145 +0 -0
- package/templates/project-starter/elizadb/base/1/4146 +0 -0
- package/templates/project-starter/elizadb/base/1/4147 +0 -0
- package/templates/project-starter/elizadb/base/1/4148 +0 -0
- package/templates/project-starter/elizadb/base/1/4149 +0 -0
- package/templates/project-starter/elizadb/base/1/4150 +0 -0
- package/templates/project-starter/elizadb/base/1/4151 +0 -0
- package/templates/project-starter/elizadb/base/1/4152 +0 -0
- package/templates/project-starter/elizadb/base/1/4153 +0 -0
- package/templates/project-starter/elizadb/base/1/4154 +0 -0
- package/templates/project-starter/elizadb/base/1/4155 +0 -0
- package/templates/project-starter/elizadb/base/1/4156 +0 -0
- package/templates/project-starter/elizadb/base/1/4157 +0 -0
- package/templates/project-starter/elizadb/base/1/4158 +0 -0
- package/templates/project-starter/elizadb/base/1/4159 +0 -0
- package/templates/project-starter/elizadb/base/1/4160 +0 -0
- package/templates/project-starter/elizadb/base/1/4163 +0 -0
- package/templates/project-starter/elizadb/base/1/4164 +0 -0
- package/templates/project-starter/elizadb/base/1/4165 +0 -0
- package/templates/project-starter/elizadb/base/1/4166 +0 -0
- package/templates/project-starter/elizadb/base/1/4167 +0 -0
- package/templates/project-starter/elizadb/base/1/4168 +0 -0
- package/templates/project-starter/elizadb/base/1/4169 +0 -0
- package/templates/project-starter/elizadb/base/1/4170 +0 -0
- package/templates/project-starter/elizadb/base/1/4171 +0 -0
- package/templates/project-starter/elizadb/base/1/4172 +0 -0
- package/templates/project-starter/elizadb/base/1/4173 +0 -0
- package/templates/project-starter/elizadb/base/1/4174 +0 -0
- package/templates/project-starter/elizadb/base/1/5002 +0 -0
- package/templates/project-starter/elizadb/base/1/548 +0 -0
- package/templates/project-starter/elizadb/base/1/549 +0 -0
- package/templates/project-starter/elizadb/base/1/6102 +0 -0
- package/templates/project-starter/elizadb/base/1/6104 +0 -0
- package/templates/project-starter/elizadb/base/1/6106 +0 -0
- package/templates/project-starter/elizadb/base/1/6110 +0 -0
- package/templates/project-starter/elizadb/base/1/6111 +0 -0
- package/templates/project-starter/elizadb/base/1/6112 +0 -0
- package/templates/project-starter/elizadb/base/1/6113 +0 -0
- package/templates/project-starter/elizadb/base/1/6116 +0 -0
- package/templates/project-starter/elizadb/base/1/6117 +0 -0
- package/templates/project-starter/elizadb/base/1/6175 +0 -0
- package/templates/project-starter/elizadb/base/1/6176 +0 -0
- package/templates/project-starter/elizadb/base/1/6228 +0 -0
- package/templates/project-starter/elizadb/base/1/6229 +0 -0
- package/templates/project-starter/elizadb/base/1/6237 +0 -0
- package/templates/project-starter/elizadb/base/1/6238 +0 -0
- package/templates/project-starter/elizadb/base/1/6239 +0 -0
- package/templates/project-starter/elizadb/base/1/826 +0 -0
- package/templates/project-starter/elizadb/base/1/827 +0 -0
- package/templates/project-starter/elizadb/base/1/828 +0 -0
- package/templates/project-starter/elizadb/base/1/PG_VERSION +1 -0
- package/templates/project-starter/elizadb/base/1/pg_filenode.map +0 -0
- package/templates/project-starter/elizadb/base/4/112 +0 -0
- package/templates/project-starter/elizadb/base/4/113 +0 -0
- package/templates/project-starter/elizadb/base/4/1247 +0 -0
- package/templates/project-starter/elizadb/base/4/1247_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/1247_vm +0 -0
- package/templates/project-starter/elizadb/base/4/1249 +0 -0
- package/templates/project-starter/elizadb/base/4/1249_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/1249_vm +0 -0
- package/templates/project-starter/elizadb/base/4/1255 +0 -0
- package/templates/project-starter/elizadb/base/4/1255_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/1255_vm +0 -0
- package/templates/project-starter/elizadb/base/4/1259 +0 -0
- package/templates/project-starter/elizadb/base/4/12590 +0 -0
- package/templates/project-starter/elizadb/base/4/12590_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/12590_vm +0 -0
- package/templates/project-starter/elizadb/base/4/12593 +0 -0
- package/templates/project-starter/elizadb/base/4/12594 +0 -0
- package/templates/project-starter/elizadb/base/4/12595 +0 -0
- package/templates/project-starter/elizadb/base/4/12595_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/12595_vm +0 -0
- package/templates/project-starter/elizadb/base/4/12598 +0 -0
- package/templates/project-starter/elizadb/base/4/12599 +0 -0
- package/templates/project-starter/elizadb/base/4/1259_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/1259_vm +0 -0
- package/templates/project-starter/elizadb/base/4/12600 +0 -0
- package/templates/project-starter/elizadb/base/4/12600_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/12600_vm +0 -0
- package/templates/project-starter/elizadb/base/4/12603 +0 -0
- package/templates/project-starter/elizadb/base/4/12604 +0 -0
- package/templates/project-starter/elizadb/base/4/12605 +0 -0
- package/templates/project-starter/elizadb/base/4/12605_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/12605_vm +0 -0
- package/templates/project-starter/elizadb/base/4/12608 +0 -0
- package/templates/project-starter/elizadb/base/4/12609 +0 -0
- package/templates/project-starter/elizadb/base/4/1417 +0 -0
- package/templates/project-starter/elizadb/base/4/1418 +0 -0
- package/templates/project-starter/elizadb/base/4/174 +0 -0
- package/templates/project-starter/elizadb/base/4/175 +0 -0
- package/templates/project-starter/elizadb/base/4/2187 +0 -0
- package/templates/project-starter/elizadb/base/4/2224 +0 -0
- package/templates/project-starter/elizadb/base/4/2228 +0 -0
- package/templates/project-starter/elizadb/base/4/2328 +0 -0
- package/templates/project-starter/elizadb/base/4/2336 +0 -0
- package/templates/project-starter/elizadb/base/4/2337 +0 -0
- package/templates/project-starter/elizadb/base/4/2579 +0 -0
- package/templates/project-starter/elizadb/base/4/2600 +0 -0
- package/templates/project-starter/elizadb/base/4/2600_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2600_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2601 +0 -0
- package/templates/project-starter/elizadb/base/4/2601_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2601_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2602 +0 -0
- package/templates/project-starter/elizadb/base/4/2602_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2602_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2603 +0 -0
- package/templates/project-starter/elizadb/base/4/2603_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2603_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2604 +0 -0
- package/templates/project-starter/elizadb/base/4/2605 +0 -0
- package/templates/project-starter/elizadb/base/4/2605_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2605_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2606 +0 -0
- package/templates/project-starter/elizadb/base/4/2606_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2606_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2607 +0 -0
- package/templates/project-starter/elizadb/base/4/2607_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2607_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2608 +0 -0
- package/templates/project-starter/elizadb/base/4/2608_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2608_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2609 +0 -0
- package/templates/project-starter/elizadb/base/4/2609_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2609_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2610 +0 -0
- package/templates/project-starter/elizadb/base/4/2610_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2610_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2611 +0 -0
- package/templates/project-starter/elizadb/base/4/2612 +0 -0
- package/templates/project-starter/elizadb/base/4/2612_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2612_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2613 +0 -0
- package/templates/project-starter/elizadb/base/4/2615 +0 -0
- package/templates/project-starter/elizadb/base/4/2615_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2615_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2616 +0 -0
- package/templates/project-starter/elizadb/base/4/2616_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2616_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2617 +0 -0
- package/templates/project-starter/elizadb/base/4/2617_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2617_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2618 +0 -0
- package/templates/project-starter/elizadb/base/4/2618_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2618_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2619 +0 -0
- package/templates/project-starter/elizadb/base/4/2619_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2619_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2620 +0 -0
- package/templates/project-starter/elizadb/base/4/2650 +0 -0
- package/templates/project-starter/elizadb/base/4/2651 +0 -0
- package/templates/project-starter/elizadb/base/4/2652 +0 -0
- package/templates/project-starter/elizadb/base/4/2653 +0 -0
- package/templates/project-starter/elizadb/base/4/2654 +0 -0
- package/templates/project-starter/elizadb/base/4/2655 +0 -0
- package/templates/project-starter/elizadb/base/4/2656 +0 -0
- package/templates/project-starter/elizadb/base/4/2657 +0 -0
- package/templates/project-starter/elizadb/base/4/2658 +0 -0
- package/templates/project-starter/elizadb/base/4/2659 +0 -0
- package/templates/project-starter/elizadb/base/4/2660 +0 -0
- package/templates/project-starter/elizadb/base/4/2661 +0 -0
- package/templates/project-starter/elizadb/base/4/2662 +0 -0
- package/templates/project-starter/elizadb/base/4/2663 +0 -0
- package/templates/project-starter/elizadb/base/4/2664 +0 -0
- package/templates/project-starter/elizadb/base/4/2665 +0 -0
- package/templates/project-starter/elizadb/base/4/2666 +0 -0
- package/templates/project-starter/elizadb/base/4/2667 +0 -0
- package/templates/project-starter/elizadb/base/4/2668 +0 -0
- package/templates/project-starter/elizadb/base/4/2669 +0 -0
- package/templates/project-starter/elizadb/base/4/2670 +0 -0
- package/templates/project-starter/elizadb/base/4/2673 +0 -0
- package/templates/project-starter/elizadb/base/4/2674 +0 -0
- package/templates/project-starter/elizadb/base/4/2675 +0 -0
- package/templates/project-starter/elizadb/base/4/2678 +0 -0
- package/templates/project-starter/elizadb/base/4/2679 +0 -0
- package/templates/project-starter/elizadb/base/4/2680 +0 -0
- package/templates/project-starter/elizadb/base/4/2681 +0 -0
- package/templates/project-starter/elizadb/base/4/2682 +0 -0
- package/templates/project-starter/elizadb/base/4/2683 +0 -0
- package/templates/project-starter/elizadb/base/4/2684 +0 -0
- package/templates/project-starter/elizadb/base/4/2685 +0 -0
- package/templates/project-starter/elizadb/base/4/2686 +0 -0
- package/templates/project-starter/elizadb/base/4/2687 +0 -0
- package/templates/project-starter/elizadb/base/4/2688 +0 -0
- package/templates/project-starter/elizadb/base/4/2689 +0 -0
- package/templates/project-starter/elizadb/base/4/2690 +0 -0
- package/templates/project-starter/elizadb/base/4/2691 +0 -0
- package/templates/project-starter/elizadb/base/4/2692 +0 -0
- package/templates/project-starter/elizadb/base/4/2693 +0 -0
- package/templates/project-starter/elizadb/base/4/2696 +0 -0
- package/templates/project-starter/elizadb/base/4/2699 +0 -0
- package/templates/project-starter/elizadb/base/4/2701 +0 -0
- package/templates/project-starter/elizadb/base/4/2702 +0 -0
- package/templates/project-starter/elizadb/base/4/2703 +0 -0
- package/templates/project-starter/elizadb/base/4/2704 +0 -0
- package/templates/project-starter/elizadb/base/4/2753 +0 -0
- package/templates/project-starter/elizadb/base/4/2753_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2753_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2754 +0 -0
- package/templates/project-starter/elizadb/base/4/2755 +0 -0
- package/templates/project-starter/elizadb/base/4/2756 +0 -0
- package/templates/project-starter/elizadb/base/4/2757 +0 -0
- package/templates/project-starter/elizadb/base/4/2830 +0 -0
- package/templates/project-starter/elizadb/base/4/2831 +0 -0
- package/templates/project-starter/elizadb/base/4/2832 +0 -0
- package/templates/project-starter/elizadb/base/4/2833 +0 -0
- package/templates/project-starter/elizadb/base/4/2834 +0 -0
- package/templates/project-starter/elizadb/base/4/2835 +0 -0
- package/templates/project-starter/elizadb/base/4/2836 +0 -0
- package/templates/project-starter/elizadb/base/4/2836_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2836_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2837 +0 -0
- package/templates/project-starter/elizadb/base/4/2838 +0 -0
- package/templates/project-starter/elizadb/base/4/2838_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2838_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2839 +0 -0
- package/templates/project-starter/elizadb/base/4/2840 +0 -0
- package/templates/project-starter/elizadb/base/4/2840_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/2840_vm +0 -0
- package/templates/project-starter/elizadb/base/4/2841 +0 -0
- package/templates/project-starter/elizadb/base/4/2995 +0 -0
- package/templates/project-starter/elizadb/base/4/2996 +0 -0
- package/templates/project-starter/elizadb/base/4/3079 +0 -0
- package/templates/project-starter/elizadb/base/4/3079_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/3079_vm +0 -0
- package/templates/project-starter/elizadb/base/4/3080 +0 -0
- package/templates/project-starter/elizadb/base/4/3081 +0 -0
- package/templates/project-starter/elizadb/base/4/3085 +0 -0
- package/templates/project-starter/elizadb/base/4/3118 +0 -0
- package/templates/project-starter/elizadb/base/4/3119 +0 -0
- package/templates/project-starter/elizadb/base/4/3164 +0 -0
- package/templates/project-starter/elizadb/base/4/3256 +0 -0
- package/templates/project-starter/elizadb/base/4/3257 +0 -0
- package/templates/project-starter/elizadb/base/4/3258 +0 -0
- package/templates/project-starter/elizadb/base/4/3350 +0 -0
- package/templates/project-starter/elizadb/base/4/3351 +0 -0
- package/templates/project-starter/elizadb/base/4/3379 +0 -0
- package/templates/project-starter/elizadb/base/4/3380 +0 -0
- package/templates/project-starter/elizadb/base/4/3381 +0 -0
- package/templates/project-starter/elizadb/base/4/3394 +0 -0
- package/templates/project-starter/elizadb/base/4/3394_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/3394_vm +0 -0
- package/templates/project-starter/elizadb/base/4/3395 +0 -0
- package/templates/project-starter/elizadb/base/4/3429 +0 -0
- package/templates/project-starter/elizadb/base/4/3430 +0 -0
- package/templates/project-starter/elizadb/base/4/3431 +0 -0
- package/templates/project-starter/elizadb/base/4/3433 +0 -0
- package/templates/project-starter/elizadb/base/4/3439 +0 -0
- package/templates/project-starter/elizadb/base/4/3440 +0 -0
- package/templates/project-starter/elizadb/base/4/3455 +0 -0
- package/templates/project-starter/elizadb/base/4/3456 +0 -0
- package/templates/project-starter/elizadb/base/4/3456_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/3456_vm +0 -0
- package/templates/project-starter/elizadb/base/4/3466 +0 -0
- package/templates/project-starter/elizadb/base/4/3467 +0 -0
- package/templates/project-starter/elizadb/base/4/3468 +0 -0
- package/templates/project-starter/elizadb/base/4/3501 +0 -0
- package/templates/project-starter/elizadb/base/4/3502 +0 -0
- package/templates/project-starter/elizadb/base/4/3503 +0 -0
- package/templates/project-starter/elizadb/base/4/3534 +0 -0
- package/templates/project-starter/elizadb/base/4/3541 +0 -0
- package/templates/project-starter/elizadb/base/4/3541_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/3541_vm +0 -0
- package/templates/project-starter/elizadb/base/4/3542 +0 -0
- package/templates/project-starter/elizadb/base/4/3574 +0 -0
- package/templates/project-starter/elizadb/base/4/3575 +0 -0
- package/templates/project-starter/elizadb/base/4/3576 +0 -0
- package/templates/project-starter/elizadb/base/4/3596 +0 -0
- package/templates/project-starter/elizadb/base/4/3597 +0 -0
- package/templates/project-starter/elizadb/base/4/3598 +0 -0
- package/templates/project-starter/elizadb/base/4/3599 +0 -0
- package/templates/project-starter/elizadb/base/4/3600 +0 -0
- package/templates/project-starter/elizadb/base/4/3600_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/3600_vm +0 -0
- package/templates/project-starter/elizadb/base/4/3601 +0 -0
- package/templates/project-starter/elizadb/base/4/3601_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/3601_vm +0 -0
- package/templates/project-starter/elizadb/base/4/3602 +0 -0
- package/templates/project-starter/elizadb/base/4/3602_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/3602_vm +0 -0
- package/templates/project-starter/elizadb/base/4/3603 +0 -0
- package/templates/project-starter/elizadb/base/4/3603_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/3603_vm +0 -0
- package/templates/project-starter/elizadb/base/4/3604 +0 -0
- package/templates/project-starter/elizadb/base/4/3605 +0 -0
- package/templates/project-starter/elizadb/base/4/3606 +0 -0
- package/templates/project-starter/elizadb/base/4/3607 +0 -0
- package/templates/project-starter/elizadb/base/4/3608 +0 -0
- package/templates/project-starter/elizadb/base/4/3609 +0 -0
- package/templates/project-starter/elizadb/base/4/3712 +0 -0
- package/templates/project-starter/elizadb/base/4/3764 +0 -0
- package/templates/project-starter/elizadb/base/4/3764_fsm +0 -0
- package/templates/project-starter/elizadb/base/4/3764_vm +0 -0
- package/templates/project-starter/elizadb/base/4/3766 +0 -0
- package/templates/project-starter/elizadb/base/4/3767 +0 -0
- package/templates/project-starter/elizadb/base/4/3997 +0 -0
- package/templates/project-starter/elizadb/base/4/4143 +0 -0
- package/templates/project-starter/elizadb/base/4/4144 +0 -0
- package/templates/project-starter/elizadb/base/4/4145 +0 -0
- package/templates/project-starter/elizadb/base/4/4146 +0 -0
- package/templates/project-starter/elizadb/base/4/4147 +0 -0
- package/templates/project-starter/elizadb/base/4/4148 +0 -0
- package/templates/project-starter/elizadb/base/4/4149 +0 -0
- package/templates/project-starter/elizadb/base/4/4150 +0 -0
- package/templates/project-starter/elizadb/base/4/4151 +0 -0
- package/templates/project-starter/elizadb/base/4/4152 +0 -0
- package/templates/project-starter/elizadb/base/4/4153 +0 -0
- package/templates/project-starter/elizadb/base/4/4154 +0 -0
- package/templates/project-starter/elizadb/base/4/4155 +0 -0
- package/templates/project-starter/elizadb/base/4/4156 +0 -0
- package/templates/project-starter/elizadb/base/4/4157 +0 -0
- package/templates/project-starter/elizadb/base/4/4158 +0 -0
- package/templates/project-starter/elizadb/base/4/4159 +0 -0
- package/templates/project-starter/elizadb/base/4/4160 +0 -0
- package/templates/project-starter/elizadb/base/4/4163 +0 -0
- package/templates/project-starter/elizadb/base/4/4164 +0 -0
- package/templates/project-starter/elizadb/base/4/4165 +0 -0
- package/templates/project-starter/elizadb/base/4/4166 +0 -0
- package/templates/project-starter/elizadb/base/4/4167 +0 -0
- package/templates/project-starter/elizadb/base/4/4168 +0 -0
- package/templates/project-starter/elizadb/base/4/4169 +0 -0
- package/templates/project-starter/elizadb/base/4/4170 +0 -0
- package/templates/project-starter/elizadb/base/4/4171 +0 -0
- package/templates/project-starter/elizadb/base/4/4172 +0 -0
- package/templates/project-starter/elizadb/base/4/4173 +0 -0
- package/templates/project-starter/elizadb/base/4/4174 +0 -0
- package/templates/project-starter/elizadb/base/4/5002 +0 -0
- package/templates/project-starter/elizadb/base/4/548 +0 -0
- package/templates/project-starter/elizadb/base/4/549 +0 -0
- package/templates/project-starter/elizadb/base/4/6102 +0 -0
- package/templates/project-starter/elizadb/base/4/6104 +0 -0
- package/templates/project-starter/elizadb/base/4/6106 +0 -0
- package/templates/project-starter/elizadb/base/4/6110 +0 -0
- package/templates/project-starter/elizadb/base/4/6111 +0 -0
- package/templates/project-starter/elizadb/base/4/6112 +0 -0
- package/templates/project-starter/elizadb/base/4/6113 +0 -0
- package/templates/project-starter/elizadb/base/4/6116 +0 -0
- package/templates/project-starter/elizadb/base/4/6117 +0 -0
- package/templates/project-starter/elizadb/base/4/6175 +0 -0
- package/templates/project-starter/elizadb/base/4/6176 +0 -0
- package/templates/project-starter/elizadb/base/4/6228 +0 -0
- package/templates/project-starter/elizadb/base/4/6229 +0 -0
- package/templates/project-starter/elizadb/base/4/6237 +0 -0
- package/templates/project-starter/elizadb/base/4/6238 +0 -0
- package/templates/project-starter/elizadb/base/4/6239 +0 -0
- package/templates/project-starter/elizadb/base/4/826 +0 -0
- package/templates/project-starter/elizadb/base/4/827 +0 -0
- package/templates/project-starter/elizadb/base/4/828 +0 -0
- package/templates/project-starter/elizadb/base/4/PG_VERSION +1 -0
- package/templates/project-starter/elizadb/base/4/pg_filenode.map +0 -0
- package/templates/project-starter/elizadb/base/5/112 +0 -0
- package/templates/project-starter/elizadb/base/5/113 +0 -0
- package/templates/project-starter/elizadb/base/5/1247 +0 -0
- package/templates/project-starter/elizadb/base/5/1247_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/1247_vm +0 -0
- package/templates/project-starter/elizadb/base/5/1249 +0 -0
- package/templates/project-starter/elizadb/base/5/1249_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/1249_vm +0 -0
- package/templates/project-starter/elizadb/base/5/1255 +0 -0
- package/templates/project-starter/elizadb/base/5/1255_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/1255_vm +0 -0
- package/templates/project-starter/elizadb/base/5/1259 +0 -0
- package/templates/project-starter/elizadb/base/5/12590 +0 -0
- package/templates/project-starter/elizadb/base/5/12590_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/12590_vm +0 -0
- package/templates/project-starter/elizadb/base/5/12593 +0 -0
- package/templates/project-starter/elizadb/base/5/12594 +0 -0
- package/templates/project-starter/elizadb/base/5/12595 +0 -0
- package/templates/project-starter/elizadb/base/5/12595_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/12595_vm +0 -0
- package/templates/project-starter/elizadb/base/5/12598 +0 -0
- package/templates/project-starter/elizadb/base/5/12599 +0 -0
- package/templates/project-starter/elizadb/base/5/1259_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/1259_vm +0 -0
- package/templates/project-starter/elizadb/base/5/12600 +0 -0
- package/templates/project-starter/elizadb/base/5/12600_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/12600_vm +0 -0
- package/templates/project-starter/elizadb/base/5/12603 +0 -0
- package/templates/project-starter/elizadb/base/5/12604 +0 -0
- package/templates/project-starter/elizadb/base/5/12605 +0 -0
- package/templates/project-starter/elizadb/base/5/12605_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/12605_vm +0 -0
- package/templates/project-starter/elizadb/base/5/12608 +0 -0
- package/templates/project-starter/elizadb/base/5/12609 +0 -0
- package/templates/project-starter/elizadb/base/5/1417 +0 -0
- package/templates/project-starter/elizadb/base/5/1418 +0 -0
- package/templates/project-starter/elizadb/base/5/174 +0 -0
- package/templates/project-starter/elizadb/base/5/175 +0 -0
- package/templates/project-starter/elizadb/base/5/2187 +0 -0
- package/templates/project-starter/elizadb/base/5/2224 +0 -0
- package/templates/project-starter/elizadb/base/5/2228 +0 -0
- package/templates/project-starter/elizadb/base/5/2328 +0 -0
- package/templates/project-starter/elizadb/base/5/2336 +0 -0
- package/templates/project-starter/elizadb/base/5/2337 +0 -0
- package/templates/project-starter/elizadb/base/5/2579 +0 -0
- package/templates/project-starter/elizadb/base/5/2600 +0 -0
- package/templates/project-starter/elizadb/base/5/2600_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2600_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2601 +0 -0
- package/templates/project-starter/elizadb/base/5/2601_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2601_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2602 +0 -0
- package/templates/project-starter/elizadb/base/5/2602_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2602_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2603 +0 -0
- package/templates/project-starter/elizadb/base/5/2603_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2603_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2604 +0 -0
- package/templates/project-starter/elizadb/base/5/2605 +0 -0
- package/templates/project-starter/elizadb/base/5/2605_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2605_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2606 +0 -0
- package/templates/project-starter/elizadb/base/5/2606_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2606_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2607 +0 -0
- package/templates/project-starter/elizadb/base/5/2607_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2607_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2608 +0 -0
- package/templates/project-starter/elizadb/base/5/2608_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2608_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2609 +0 -0
- package/templates/project-starter/elizadb/base/5/2609_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2609_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2610 +0 -0
- package/templates/project-starter/elizadb/base/5/2610_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2610_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2611 +0 -0
- package/templates/project-starter/elizadb/base/5/2612 +0 -0
- package/templates/project-starter/elizadb/base/5/2612_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2612_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2613 +0 -0
- package/templates/project-starter/elizadb/base/5/2615 +0 -0
- package/templates/project-starter/elizadb/base/5/2615_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2615_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2616 +0 -0
- package/templates/project-starter/elizadb/base/5/2616_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2616_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2617 +0 -0
- package/templates/project-starter/elizadb/base/5/2617_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2617_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2618 +0 -0
- package/templates/project-starter/elizadb/base/5/2618_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2618_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2619 +0 -0
- package/templates/project-starter/elizadb/base/5/2619_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2619_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2620 +0 -0
- package/templates/project-starter/elizadb/base/5/2650 +0 -0
- package/templates/project-starter/elizadb/base/5/2651 +0 -0
- package/templates/project-starter/elizadb/base/5/2652 +0 -0
- package/templates/project-starter/elizadb/base/5/2653 +0 -0
- package/templates/project-starter/elizadb/base/5/2654 +0 -0
- package/templates/project-starter/elizadb/base/5/2655 +0 -0
- package/templates/project-starter/elizadb/base/5/2656 +0 -0
- package/templates/project-starter/elizadb/base/5/2657 +0 -0
- package/templates/project-starter/elizadb/base/5/2658 +0 -0
- package/templates/project-starter/elizadb/base/5/2659 +0 -0
- package/templates/project-starter/elizadb/base/5/2660 +0 -0
- package/templates/project-starter/elizadb/base/5/2661 +0 -0
- package/templates/project-starter/elizadb/base/5/2662 +0 -0
- package/templates/project-starter/elizadb/base/5/2663 +0 -0
- package/templates/project-starter/elizadb/base/5/2664 +0 -0
- package/templates/project-starter/elizadb/base/5/2665 +0 -0
- package/templates/project-starter/elizadb/base/5/2666 +0 -0
- package/templates/project-starter/elizadb/base/5/2667 +0 -0
- package/templates/project-starter/elizadb/base/5/2668 +0 -0
- package/templates/project-starter/elizadb/base/5/2669 +0 -0
- package/templates/project-starter/elizadb/base/5/2670 +0 -0
- package/templates/project-starter/elizadb/base/5/2673 +0 -0
- package/templates/project-starter/elizadb/base/5/2674 +0 -0
- package/templates/project-starter/elizadb/base/5/2675 +0 -0
- package/templates/project-starter/elizadb/base/5/2678 +0 -0
- package/templates/project-starter/elizadb/base/5/2679 +0 -0
- package/templates/project-starter/elizadb/base/5/2680 +0 -0
- package/templates/project-starter/elizadb/base/5/2681 +0 -0
- package/templates/project-starter/elizadb/base/5/2682 +0 -0
- package/templates/project-starter/elizadb/base/5/2683 +0 -0
- package/templates/project-starter/elizadb/base/5/2684 +0 -0
- package/templates/project-starter/elizadb/base/5/2685 +0 -0
- package/templates/project-starter/elizadb/base/5/2686 +0 -0
- package/templates/project-starter/elizadb/base/5/2687 +0 -0
- package/templates/project-starter/elizadb/base/5/2688 +0 -0
- package/templates/project-starter/elizadb/base/5/2689 +0 -0
- package/templates/project-starter/elizadb/base/5/2690 +0 -0
- package/templates/project-starter/elizadb/base/5/2691 +0 -0
- package/templates/project-starter/elizadb/base/5/2692 +0 -0
- package/templates/project-starter/elizadb/base/5/2693 +0 -0
- package/templates/project-starter/elizadb/base/5/2696 +0 -0
- package/templates/project-starter/elizadb/base/5/2699 +0 -0
- package/templates/project-starter/elizadb/base/5/2701 +0 -0
- package/templates/project-starter/elizadb/base/5/2702 +0 -0
- package/templates/project-starter/elizadb/base/5/2703 +0 -0
- package/templates/project-starter/elizadb/base/5/2704 +0 -0
- package/templates/project-starter/elizadb/base/5/2753 +0 -0
- package/templates/project-starter/elizadb/base/5/2753_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2753_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2754 +0 -0
- package/templates/project-starter/elizadb/base/5/2755 +0 -0
- package/templates/project-starter/elizadb/base/5/2756 +0 -0
- package/templates/project-starter/elizadb/base/5/2757 +0 -0
- package/templates/project-starter/elizadb/base/5/2830 +0 -0
- package/templates/project-starter/elizadb/base/5/2831 +0 -0
- package/templates/project-starter/elizadb/base/5/2832 +0 -0
- package/templates/project-starter/elizadb/base/5/2833 +0 -0
- package/templates/project-starter/elizadb/base/5/2834 +0 -0
- package/templates/project-starter/elizadb/base/5/2835 +0 -0
- package/templates/project-starter/elizadb/base/5/2836 +0 -0
- package/templates/project-starter/elizadb/base/5/2836_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2836_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2837 +0 -0
- package/templates/project-starter/elizadb/base/5/2838 +0 -0
- package/templates/project-starter/elizadb/base/5/2838_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2838_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2839 +0 -0
- package/templates/project-starter/elizadb/base/5/2840 +0 -0
- package/templates/project-starter/elizadb/base/5/2840_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/2840_vm +0 -0
- package/templates/project-starter/elizadb/base/5/2841 +0 -0
- package/templates/project-starter/elizadb/base/5/2995 +0 -0
- package/templates/project-starter/elizadb/base/5/2996 +0 -0
- package/templates/project-starter/elizadb/base/5/3079 +0 -0
- package/templates/project-starter/elizadb/base/5/3079_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/3079_vm +0 -0
- package/templates/project-starter/elizadb/base/5/3080 +0 -0
- package/templates/project-starter/elizadb/base/5/3081 +0 -0
- package/templates/project-starter/elizadb/base/5/3085 +0 -0
- package/templates/project-starter/elizadb/base/5/3118 +0 -0
- package/templates/project-starter/elizadb/base/5/3119 +0 -0
- package/templates/project-starter/elizadb/base/5/3164 +0 -0
- package/templates/project-starter/elizadb/base/5/3256 +0 -0
- package/templates/project-starter/elizadb/base/5/3257 +0 -0
- package/templates/project-starter/elizadb/base/5/3258 +0 -0
- package/templates/project-starter/elizadb/base/5/3350 +0 -0
- package/templates/project-starter/elizadb/base/5/3351 +0 -0
- package/templates/project-starter/elizadb/base/5/3379 +0 -0
- package/templates/project-starter/elizadb/base/5/3380 +0 -0
- package/templates/project-starter/elizadb/base/5/3381 +0 -0
- package/templates/project-starter/elizadb/base/5/3394 +0 -0
- package/templates/project-starter/elizadb/base/5/3394_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/3394_vm +0 -0
- package/templates/project-starter/elizadb/base/5/3395 +0 -0
- package/templates/project-starter/elizadb/base/5/3429 +0 -0
- package/templates/project-starter/elizadb/base/5/3430 +0 -0
- package/templates/project-starter/elizadb/base/5/3431 +0 -0
- package/templates/project-starter/elizadb/base/5/3433 +0 -0
- package/templates/project-starter/elizadb/base/5/3439 +0 -0
- package/templates/project-starter/elizadb/base/5/3440 +0 -0
- package/templates/project-starter/elizadb/base/5/3455 +0 -0
- package/templates/project-starter/elizadb/base/5/3456 +0 -0
- package/templates/project-starter/elizadb/base/5/3456_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/3456_vm +0 -0
- package/templates/project-starter/elizadb/base/5/3466 +0 -0
- package/templates/project-starter/elizadb/base/5/3467 +0 -0
- package/templates/project-starter/elizadb/base/5/3468 +0 -0
- package/templates/project-starter/elizadb/base/5/3501 +0 -0
- package/templates/project-starter/elizadb/base/5/3502 +0 -0
- package/templates/project-starter/elizadb/base/5/3503 +0 -0
- package/templates/project-starter/elizadb/base/5/3534 +0 -0
- package/templates/project-starter/elizadb/base/5/3541 +0 -0
- package/templates/project-starter/elizadb/base/5/3541_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/3541_vm +0 -0
- package/templates/project-starter/elizadb/base/5/3542 +0 -0
- package/templates/project-starter/elizadb/base/5/3574 +0 -0
- package/templates/project-starter/elizadb/base/5/3575 +0 -0
- package/templates/project-starter/elizadb/base/5/3576 +0 -0
- package/templates/project-starter/elizadb/base/5/3596 +0 -0
- package/templates/project-starter/elizadb/base/5/3597 +0 -0
- package/templates/project-starter/elizadb/base/5/3598 +0 -0
- package/templates/project-starter/elizadb/base/5/3599 +0 -0
- package/templates/project-starter/elizadb/base/5/3600 +0 -0
- package/templates/project-starter/elizadb/base/5/3600_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/3600_vm +0 -0
- package/templates/project-starter/elizadb/base/5/3601 +0 -0
- package/templates/project-starter/elizadb/base/5/3601_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/3601_vm +0 -0
- package/templates/project-starter/elizadb/base/5/3602 +0 -0
- package/templates/project-starter/elizadb/base/5/3602_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/3602_vm +0 -0
- package/templates/project-starter/elizadb/base/5/3603 +0 -0
- package/templates/project-starter/elizadb/base/5/3603_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/3603_vm +0 -0
- package/templates/project-starter/elizadb/base/5/3604 +0 -0
- package/templates/project-starter/elizadb/base/5/3605 +0 -0
- package/templates/project-starter/elizadb/base/5/3606 +0 -0
- package/templates/project-starter/elizadb/base/5/3607 +0 -0
- package/templates/project-starter/elizadb/base/5/3608 +0 -0
- package/templates/project-starter/elizadb/base/5/3609 +0 -0
- package/templates/project-starter/elizadb/base/5/3712 +0 -0
- package/templates/project-starter/elizadb/base/5/3764 +0 -0
- package/templates/project-starter/elizadb/base/5/3764_fsm +0 -0
- package/templates/project-starter/elizadb/base/5/3764_vm +0 -0
- package/templates/project-starter/elizadb/base/5/3766 +0 -0
- package/templates/project-starter/elizadb/base/5/3767 +0 -0
- package/templates/project-starter/elizadb/base/5/3997 +0 -0
- package/templates/project-starter/elizadb/base/5/4143 +0 -0
- package/templates/project-starter/elizadb/base/5/4144 +0 -0
- package/templates/project-starter/elizadb/base/5/4145 +0 -0
- package/templates/project-starter/elizadb/base/5/4146 +0 -0
- package/templates/project-starter/elizadb/base/5/4147 +0 -0
- package/templates/project-starter/elizadb/base/5/4148 +0 -0
- package/templates/project-starter/elizadb/base/5/4149 +0 -0
- package/templates/project-starter/elizadb/base/5/4150 +0 -0
- package/templates/project-starter/elizadb/base/5/4151 +0 -0
- package/templates/project-starter/elizadb/base/5/4152 +0 -0
- package/templates/project-starter/elizadb/base/5/4153 +0 -0
- package/templates/project-starter/elizadb/base/5/4154 +0 -0
- package/templates/project-starter/elizadb/base/5/4155 +0 -0
- package/templates/project-starter/elizadb/base/5/4156 +0 -0
- package/templates/project-starter/elizadb/base/5/4157 +0 -0
- package/templates/project-starter/elizadb/base/5/4158 +0 -0
- package/templates/project-starter/elizadb/base/5/4159 +0 -0
- package/templates/project-starter/elizadb/base/5/4160 +0 -0
- package/templates/project-starter/elizadb/base/5/4163 +0 -0
- package/templates/project-starter/elizadb/base/5/4164 +0 -0
- package/templates/project-starter/elizadb/base/5/4165 +0 -0
- package/templates/project-starter/elizadb/base/5/4166 +0 -0
- package/templates/project-starter/elizadb/base/5/4167 +0 -0
- package/templates/project-starter/elizadb/base/5/4168 +0 -0
- package/templates/project-starter/elizadb/base/5/4169 +0 -0
- package/templates/project-starter/elizadb/base/5/4170 +0 -0
- package/templates/project-starter/elizadb/base/5/4171 +0 -0
- package/templates/project-starter/elizadb/base/5/4172 +0 -0
- package/templates/project-starter/elizadb/base/5/4173 +0 -0
- package/templates/project-starter/elizadb/base/5/4174 +0 -0
- package/templates/project-starter/elizadb/base/5/5002 +0 -0
- package/templates/project-starter/elizadb/base/5/548 +0 -0
- package/templates/project-starter/elizadb/base/5/549 +0 -0
- package/templates/project-starter/elizadb/base/5/6102 +0 -0
- package/templates/project-starter/elizadb/base/5/6104 +0 -0
- package/templates/project-starter/elizadb/base/5/6106 +0 -0
- package/templates/project-starter/elizadb/base/5/6110 +0 -0
- package/templates/project-starter/elizadb/base/5/6111 +0 -0
- package/templates/project-starter/elizadb/base/5/6112 +0 -0
- package/templates/project-starter/elizadb/base/5/6113 +0 -0
- package/templates/project-starter/elizadb/base/5/6116 +0 -0
- package/templates/project-starter/elizadb/base/5/6117 +0 -0
- package/templates/project-starter/elizadb/base/5/6175 +0 -0
- package/templates/project-starter/elizadb/base/5/6176 +0 -0
- package/templates/project-starter/elizadb/base/5/6228 +0 -0
- package/templates/project-starter/elizadb/base/5/6229 +0 -0
- package/templates/project-starter/elizadb/base/5/6237 +0 -0
- package/templates/project-starter/elizadb/base/5/6238 +0 -0
- package/templates/project-starter/elizadb/base/5/6239 +0 -0
- package/templates/project-starter/elizadb/base/5/826 +0 -0
- package/templates/project-starter/elizadb/base/5/827 +0 -0
- package/templates/project-starter/elizadb/base/5/828 +0 -0
- package/templates/project-starter/elizadb/base/5/PG_VERSION +1 -0
- package/templates/project-starter/elizadb/base/5/pg_filenode.map +0 -0
- package/templates/project-starter/elizadb/global/1213 +0 -0
- package/templates/project-starter/elizadb/global/1213_fsm +0 -0
- package/templates/project-starter/elizadb/global/1213_vm +0 -0
- package/templates/project-starter/elizadb/global/1214 +0 -0
- package/templates/project-starter/elizadb/global/1232 +0 -0
- package/templates/project-starter/elizadb/global/1233 +0 -0
- package/templates/project-starter/elizadb/global/1260 +0 -0
- package/templates/project-starter/elizadb/global/1260_fsm +0 -0
- package/templates/project-starter/elizadb/global/1260_vm +0 -0
- package/templates/project-starter/elizadb/global/1261 +0 -0
- package/templates/project-starter/elizadb/global/1261_fsm +0 -0
- package/templates/project-starter/elizadb/global/1261_vm +0 -0
- package/templates/project-starter/elizadb/global/1262 +0 -0
- package/templates/project-starter/elizadb/global/1262_fsm +0 -0
- package/templates/project-starter/elizadb/global/1262_vm +0 -0
- package/templates/project-starter/elizadb/global/2396 +0 -0
- package/templates/project-starter/elizadb/global/2396_fsm +0 -0
- package/templates/project-starter/elizadb/global/2396_vm +0 -0
- package/templates/project-starter/elizadb/global/2397 +0 -0
- package/templates/project-starter/elizadb/global/2671 +0 -0
- package/templates/project-starter/elizadb/global/2672 +0 -0
- package/templates/project-starter/elizadb/global/2676 +0 -0
- package/templates/project-starter/elizadb/global/2677 +0 -0
- package/templates/project-starter/elizadb/global/2694 +0 -0
- package/templates/project-starter/elizadb/global/2695 +0 -0
- package/templates/project-starter/elizadb/global/2697 +0 -0
- package/templates/project-starter/elizadb/global/2698 +0 -0
- package/templates/project-starter/elizadb/global/2846 +0 -0
- package/templates/project-starter/elizadb/global/2847 +0 -0
- package/templates/project-starter/elizadb/global/2964 +0 -0
- package/templates/project-starter/elizadb/global/2965 +0 -0
- package/templates/project-starter/elizadb/global/2966 +0 -0
- package/templates/project-starter/elizadb/global/2967 +0 -0
- package/templates/project-starter/elizadb/global/3592 +0 -0
- package/templates/project-starter/elizadb/global/3593 +0 -0
- package/templates/project-starter/elizadb/global/4060 +0 -0
- package/templates/project-starter/elizadb/global/4061 +0 -0
- package/templates/project-starter/elizadb/global/4175 +0 -0
- package/templates/project-starter/elizadb/global/4176 +0 -0
- package/templates/project-starter/elizadb/global/4177 +0 -0
- package/templates/project-starter/elizadb/global/4178 +0 -0
- package/templates/project-starter/elizadb/global/4181 +0 -0
- package/templates/project-starter/elizadb/global/4182 +0 -0
- package/templates/project-starter/elizadb/global/4183 +0 -0
- package/templates/project-starter/elizadb/global/4184 +0 -0
- package/templates/project-starter/elizadb/global/4185 +0 -0
- package/templates/project-starter/elizadb/global/4186 +0 -0
- package/templates/project-starter/elizadb/global/6000 +0 -0
- package/templates/project-starter/elizadb/global/6001 +0 -0
- package/templates/project-starter/elizadb/global/6002 +0 -0
- package/templates/project-starter/elizadb/global/6100 +0 -0
- package/templates/project-starter/elizadb/global/6114 +0 -0
- package/templates/project-starter/elizadb/global/6115 +0 -0
- package/templates/project-starter/elizadb/global/6243 +0 -0
- package/templates/project-starter/elizadb/global/6244 +0 -0
- package/templates/project-starter/elizadb/global/6245 +0 -0
- package/templates/project-starter/elizadb/global/6246 +0 -0
- package/templates/project-starter/elizadb/global/6247 +0 -0
- package/templates/project-starter/elizadb/global/6302 +0 -0
- package/templates/project-starter/elizadb/global/6303 +0 -0
- package/templates/project-starter/elizadb/global/pg_control +0 -0
- package/templates/project-starter/elizadb/global/pg_filenode.map +0 -0
- package/templates/project-starter/elizadb/pg_hba.conf +126 -0
- package/templates/project-starter/elizadb/pg_ident.conf +72 -0
- package/templates/project-starter/elizadb/pg_logical/replorigin_checkpoint +0 -0
- package/templates/project-starter/elizadb/pg_multixact/members/0000 +0 -0
- package/templates/project-starter/elizadb/pg_multixact/offsets/0000 +0 -0
- package/templates/project-starter/elizadb/pg_subtrans/0000 +0 -0
- package/templates/project-starter/elizadb/pg_wal/000000010000000000000005 +0 -0
- package/templates/project-starter/elizadb/pg_wal/000000010000000000000006 +0 -0
- package/templates/project-starter/elizadb/pg_wal/000000010000000000000007 +0 -0
- package/templates/project-starter/elizadb/pg_wal/000000010000000000000008 +0 -0
- package/templates/project-starter/elizadb/pg_wal/000000010000000000000009 +0 -0
- package/templates/project-starter/elizadb/pg_xact/0000 +0 -0
- package/templates/project-starter/elizadb/postgresql.auto.conf +2 -0
- package/templates/project-starter/elizadb/postgresql.conf +820 -0
- package/templates/project-starter/elizadb/postmaster.pid +7 -0
- package/templates/project-starter/package.json +22 -11
- package/templates/project-starter/src/index.ts +55 -195
- package/templates/project-starter/src/plugin.ts +0 -2
- package/templates/project-starter/tsconfig.json +2 -2
- package/templates/project-starter/vitest.config.ts +16 -0
- package/dist/assets/index-BQ_bEIHz.js +0 -6596
- package/dist/assets/index-BQ_bEIHz.js.br +0 -0
- package/dist/assets/index-BQ_bEIHz.js.map +0 -1
- package/dist/assets/index-CRsdbWjx.css +0 -1
- package/dist/assets/index-CRsdbWjx.css.br +0 -0
- package/dist/assets/index-Cgp6vOMq.js +0 -56267
- package/dist/assets/index-Cgp6vOMq.js.br +0 -0
- package/dist/assets/index-Cgp6vOMq.js.map +0 -1
- package/dist/chunk-36ICN22Z.js +0 -4170
- package/dist/chunk-5GTCUWAK.js +0 -79
- package/dist/chunk-AOCSN5JE.js +0 -790
- package/dist/chunk-CGF4ITLZ.js +0 -24
- package/dist/chunk-CP2SCNOS.js +0 -328
- package/dist/chunk-EBPMC34H.js +0 -59
- package/dist/chunk-EMCUAFBU.js +0 -187
- package/dist/chunk-H473MSWF.js +0 -28122
- package/dist/chunk-HRNFSMKW.js +0 -718
- package/dist/chunk-JE3WCXNS.js +0 -16
- package/dist/chunk-LIA2BGYJ.js +0 -1989
- package/dist/chunk-M6QKWXHS.js +0 -357
- package/dist/chunk-NXAV63GD.js +0 -6232
- package/dist/chunk-OFTLH62L.js +0 -296
- package/dist/chunk-V4PVQFZ5.js +0 -182
- package/dist/chunk-V4SYXJDR.js +0 -674
- package/dist/chunk-VI5W7VMD.js +0 -1473
- package/dist/chunk-VN7BGJ3T.js +0 -113
- package/dist/chunk-WGFHIG2B.js +0 -306
- package/dist/chunk-XKA2ZD3D.js +0 -123
- package/dist/chunk-XVR67WIR.js +0 -78
- package/dist/commands/plugin.js +0 -22
- package/dist/commands/project.js +0 -21
- package/dist/esm-CDFO4YCA.js +0 -1707
- package/dist/pino-pretty-UQPCTWL5.js +0 -2550
- package/drizzle/migrations/20250302132443_init.sql +0 -199
- package/drizzle/migrations/meta/20250302132443_snapshot.json +0 -1285
- package/drizzle/migrations/meta/_journal.json +0 -13
package/LICENSE
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
MIT License
|
|
2
2
|
|
|
3
|
-
Copyright (c) 2025 Shaw Walters
|
|
3
|
+
Copyright (c) 2025 Shaw Walters and elizaOS Contributors
|
|
4
4
|
|
|
5
5
|
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
6
|
of this software and associated documentation files (the "Software"), to deal
|
package/README.md
CHANGED
|
@@ -1,203 +1,487 @@
|
|
|
1
|
-
# CLI
|
|
1
|
+
# ElizaOS CLI
|
|
2
2
|
|
|
3
|
-
The CLI provides a set of commands to manage your ElizaOS projects and plugins, from local development to cloud deployment.
|
|
3
|
+
The ElizaOS CLI provides a comprehensive set of commands to manage your ElizaOS projects and plugins, from local development to cloud deployment.
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
## Installation
|
|
6
6
|
|
|
7
|
-
|
|
7
|
+
```bash
|
|
8
|
+
bun install -g @elizaos/cli@beta
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
### Alternative usage with npx
|
|
8
12
|
|
|
9
|
-
|
|
13
|
+
You can also run the CLI directly without installation using npx:
|
|
10
14
|
|
|
11
|
-
```
|
|
12
|
-
|
|
13
|
-
TELEGRAM_BOT_TOKEN=your_token
|
|
14
|
-
# Add other required variables
|
|
15
|
+
```bash
|
|
16
|
+
npx @elizaos/cli@beta [command]
|
|
15
17
|
```
|
|
16
18
|
|
|
17
|
-
|
|
19
|
+
This is useful for trying out commands without installing the CLI globally.
|
|
18
20
|
|
|
19
|
-
##
|
|
21
|
+
## Commands
|
|
20
22
|
|
|
21
|
-
|
|
23
|
+
Below is a comprehensive reference for all ElizaOS CLI commands, including their options, arguments, and subcommands. For the most up-to-date usage, run `elizaos [command] --help`.
|
|
22
24
|
|
|
23
|
-
|
|
24
|
-
- Node.js and npm/bun installed
|
|
25
|
-
- A Docker Hub account for publishing images
|
|
26
|
-
- A Phala Cloud (https://cloud.phala.network/login) API key for cloud deployments
|
|
25
|
+
### Project Creation
|
|
27
26
|
|
|
28
|
-
|
|
27
|
+
#### `elizaos create [name]`
|
|
29
28
|
|
|
30
|
-
|
|
29
|
+
Initialize a new project, plugin, or agent.
|
|
31
30
|
|
|
32
|
-
|
|
31
|
+
- **Arguments:**
|
|
32
|
+
- `[name]`: Name for the project, plugin, or agent (optional)
|
|
33
|
+
- **Options:**
|
|
34
|
+
- `-d, --dir <dir>`: Installation directory (default: `.`)
|
|
35
|
+
- `-y, --yes`: Skip confirmation and use defaults (default: `false`)
|
|
36
|
+
- `-t, --type <type>`: Type to create: 'project', 'plugin', or 'agent' (default: 'project')
|
|
33
37
|
|
|
34
|
-
|
|
35
|
-
elizaos tee phala build \
|
|
36
|
-
-i your-image-name \
|
|
37
|
-
-u your-dockerhub-username \
|
|
38
|
-
-f path/to/Dockerfile \
|
|
39
|
-
-t tag-name
|
|
40
|
-
```
|
|
38
|
+
**Important notes:**
|
|
41
39
|
|
|
42
|
-
|
|
40
|
+
- Projects include a knowledge directory and a prompt for database selection (pglite or postgres)
|
|
41
|
+
- Plugins are automatically prefixed with "plugin-" if the prefix is missing
|
|
42
|
+
- Agents are created as JSON character definition files in the current directory
|
|
43
43
|
|
|
44
|
-
|
|
44
|
+
### Development
|
|
45
45
|
|
|
46
|
-
|
|
47
|
-
elizaos tee phala simulator
|
|
48
|
-
```
|
|
46
|
+
#### `elizaos dev`
|
|
49
47
|
|
|
50
|
-
|
|
48
|
+
Start the project or plugin in development mode and rebuild on file changes.
|
|
51
49
|
|
|
52
|
-
|
|
50
|
+
- **Options:**
|
|
51
|
+
- `-c, --configure`: Reconfigure services and AI models
|
|
52
|
+
- `-char, --character [paths...]`: Character file(s) to use - accepts paths or URLs
|
|
53
|
+
- `-b, --build`: Build the project before starting
|
|
54
|
+
- `-p, --port <port>`: Port number to run the server on
|
|
53
55
|
|
|
54
|
-
|
|
56
|
+
**Character Handling:**
|
|
55
57
|
|
|
56
|
-
|
|
58
|
+
The `dev` command supports flexible character specification:
|
|
57
59
|
|
|
58
60
|
```bash
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
-u your-dockerhub-username \
|
|
62
|
-
-t tag-name \
|
|
63
|
-
-c path/to/character.json \
|
|
64
|
-
-e path/to/.env \
|
|
65
|
-
-v v2 # or v1 for legacy mode
|
|
66
|
-
```
|
|
61
|
+
# Space-separated paths
|
|
62
|
+
elizaos dev --character file1.json file2.json
|
|
67
63
|
|
|
68
|
-
|
|
64
|
+
# Comma-separated paths
|
|
65
|
+
elizaos dev --character "file1.json,file2.json"
|
|
69
66
|
|
|
70
|
-
|
|
71
|
-
elizaos
|
|
72
|
-
|
|
73
|
-
|
|
67
|
+
# Mixed formats with optional quotes
|
|
68
|
+
elizaos dev --character "'file1.json'" "file2.json"
|
|
69
|
+
|
|
70
|
+
# With or without .json extension
|
|
71
|
+
elizaos dev --character assistant # .json extension added automatically
|
|
72
|
+
|
|
73
|
+
# URLs are also supported
|
|
74
|
+
elizaos dev --character https://example.com/characters/assistant.json
|
|
74
75
|
```
|
|
75
76
|
|
|
76
|
-
|
|
77
|
+
### Environment Management
|
|
77
78
|
|
|
78
|
-
|
|
79
|
-
- Version control your compose files
|
|
80
|
-
- Share compose files with team members
|
|
81
|
-
- Run the same compose file multiple times
|
|
79
|
+
#### `elizaos env <subcommand>`
|
|
82
80
|
|
|
83
|
-
|
|
81
|
+
Manage environment variables and secrets.
|
|
84
82
|
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
83
|
+
- **Subcommands:**
|
|
84
|
+
- `list`: List all environment variables
|
|
85
|
+
- Options: `--local`
|
|
86
|
+
- `edit-local`: Edit local environment variables
|
|
87
|
+
- Options: `-y, --yes`
|
|
88
|
+
- `reset`: Reset all environment variables
|
|
89
|
+
- Options: `-y, --yes`
|
|
90
|
+
- `interactive`: Interactive environment variable management
|
|
91
|
+
- Options: `-y, --yes`
|
|
90
92
|
|
|
91
|
-
###
|
|
93
|
+
### Monorepo Setup
|
|
92
94
|
|
|
93
|
-
|
|
95
|
+
#### `elizaos setup-monorepo`
|
|
94
96
|
|
|
95
|
-
|
|
96
|
-
elizaos tee phala publish \
|
|
97
|
-
-i your-image-name \
|
|
98
|
-
-u your-dockerhub-username \
|
|
99
|
-
-t tag-name
|
|
100
|
-
```
|
|
97
|
+
Clone ElizaOS monorepo from a specific branch (defaults to v2-develop).
|
|
101
98
|
|
|
102
|
-
|
|
99
|
+
- **Options:**
|
|
100
|
+
- `-b, --branch <branch>`: Branch to install (default: `v2-develop`)
|
|
101
|
+
- `-d, --dir <directory>`: Destination directory (default: `./eliza`)
|
|
103
102
|
|
|
104
|
-
|
|
103
|
+
**Notes:**
|
|
105
104
|
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
-i your-image-name \
|
|
109
|
-
-u your-dockerhub-username
|
|
110
|
-
```
|
|
105
|
+
- The destination directory must be empty or non-existent
|
|
106
|
+
- After cloning, follow the displayed instructions to install dependencies and build the project
|
|
111
107
|
|
|
112
|
-
###
|
|
108
|
+
### Plugin Management
|
|
113
109
|
|
|
114
|
-
|
|
110
|
+
#### `elizaos plugins <subcommand>`
|
|
115
111
|
|
|
116
|
-
|
|
117
|
-
elizaos tee phala set-apikey your-api-key
|
|
118
|
-
```
|
|
112
|
+
Manage an ElizaOS plugin.
|
|
119
113
|
|
|
120
|
-
|
|
114
|
+
- **Subcommands:**
|
|
115
|
+
- `list` (aliases: `l`, `ls`): List all available plugins
|
|
116
|
+
- `add <plugin>` (alias: `install`): Add a plugin to the project
|
|
117
|
+
- Arguments: `<plugin>` (plugin name)
|
|
118
|
+
- Options: `-n, --no-env-prompt`, `-b, --branch <branchName>`
|
|
119
|
+
- `installed-plugins`: List plugins found in the project dependencies
|
|
120
|
+
- `remove <plugin>` (aliases: `delete`, `del`, `rm`): Remove a plugin from the project
|
|
121
|
+
- Arguments: `<plugin>` (plugin name)
|
|
121
122
|
|
|
122
|
-
|
|
123
|
-
elizaos tee phala deploy \
|
|
124
|
-
-t phala \
|
|
125
|
-
-m docker-compose \
|
|
126
|
-
-n your-deployment-name \
|
|
127
|
-
-c path/to/docker-compose.yml \
|
|
128
|
-
--env-file path/to/.env
|
|
129
|
-
```
|
|
123
|
+
### Agent Management
|
|
130
124
|
|
|
131
|
-
|
|
125
|
+
#### `elizaos agent <subcommand>`
|
|
132
126
|
|
|
133
|
-
|
|
127
|
+
Manage ElizaOS agents.
|
|
134
128
|
|
|
135
|
-
|
|
136
|
-
|
|
137
|
-
|
|
129
|
+
- **Subcommands:**
|
|
130
|
+
- `list` (alias: `ls`): List available agents
|
|
131
|
+
- Options: `-j, --json` (output as JSON)
|
|
132
|
+
- `get` (alias: `g`): Get agent details
|
|
133
|
+
- Options:
|
|
134
|
+
- `-n, --name <n>`: Agent id, name, or index number from list
|
|
135
|
+
- `-j, --json`: Display JSON output in terminal
|
|
136
|
+
- `-o, --output <file>`: Save agent data to file
|
|
137
|
+
- `start` (alias: `s`): Start an agent
|
|
138
|
+
- Options:
|
|
139
|
+
- `-n, --name <n>`: Name of an existing agent to start
|
|
140
|
+
- `-j, --json <json>`: Character JSON configuration string
|
|
141
|
+
- `--path <path>`: Local path to character JSON file
|
|
142
|
+
- `--remote-character <url>`: URL to remote character JSON file
|
|
143
|
+
- `stop` (alias: `st`): Stop an agent
|
|
144
|
+
- Options:
|
|
145
|
+
- `-n, --name <n>`: Agent id, name, or index number from list
|
|
146
|
+
- `remove` (alias: `rm`): Remove an agent
|
|
147
|
+
- Options:
|
|
148
|
+
- `-n, --name <n>`: Agent id, name, or index number from list
|
|
149
|
+
- `set`: Update agent configuration
|
|
150
|
+
- Options:
|
|
151
|
+
- `-n, --name <n>`: Agent id, name, or index number from list
|
|
152
|
+
- `-c, --config <json>`: Agent configuration as JSON string
|
|
153
|
+
- `-f, --file <path>`: Path to agent configuration JSON file
|
|
138
154
|
|
|
139
|
-
|
|
155
|
+
**Note:** All agent commands support interactive mode when run without key parameters.
|
|
140
156
|
|
|
141
|
-
|
|
142
|
-
elizaos tee phala teepods
|
|
143
|
-
```
|
|
157
|
+
### Publishing
|
|
144
158
|
|
|
145
|
-
|
|
159
|
+
#### `elizaos publish`
|
|
146
160
|
|
|
147
|
-
|
|
148
|
-
elizaos tee phala images --teepod-id your-teepod-id
|
|
149
|
-
```
|
|
161
|
+
Publish a plugin or project to the registry, GitHub, or npm.
|
|
150
162
|
|
|
151
|
-
|
|
163
|
+
- **Options:**
|
|
164
|
+
- `-t, --test`: Run publish tests without actually publishing
|
|
165
|
+
- `-n, --npm`: Publish to npm
|
|
166
|
+
- `-s, --skip-registry`: Skip publishing to the registry
|
|
167
|
+
|
|
168
|
+
### Agent/Server Management
|
|
169
|
+
|
|
170
|
+
#### `elizaos start`
|
|
171
|
+
|
|
172
|
+
Start the Eliza agent with configurable plugins and services.
|
|
173
|
+
|
|
174
|
+
- **Options:**
|
|
175
|
+
- `-c, --configure`: Force reconfiguration of services and AI models
|
|
176
|
+
- `-char, --character [paths...]`: Character file(s) to use - accepts paths or URLs
|
|
177
|
+
- `-b, --build`: Build the project before starting
|
|
178
|
+
- `-p, --port <port>`: Port to listen on (default: 3000)
|
|
179
|
+
|
|
180
|
+
**Character Handling:**
|
|
181
|
+
|
|
182
|
+
The `start` command accepts characters in various formats:
|
|
152
183
|
|
|
153
184
|
```bash
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
-m docker-compose \
|
|
157
|
-
--app-id your-app-id \
|
|
158
|
-
-c path/to/docker-compose.yml \
|
|
159
|
-
--env-file path/to/.env
|
|
160
|
-
```
|
|
185
|
+
# Multiple character files (space-separated)
|
|
186
|
+
elizaos start --character file1.json file2.json
|
|
161
187
|
|
|
162
|
-
|
|
188
|
+
# Comma-separated format
|
|
189
|
+
elizaos start --character "file1.json,file2.json"
|
|
163
190
|
|
|
164
|
-
|
|
191
|
+
# With or without quotes
|
|
192
|
+
elizaos start --character "'file1.json'" "file2.json"
|
|
165
193
|
|
|
194
|
+
# Extension-optional (.json added automatically if missing)
|
|
195
|
+
elizaos start --character character1
|
|
196
|
+
|
|
197
|
+
# URLs are supported
|
|
198
|
+
elizaos start --character https://example.com/characters/assistant.json
|
|
166
199
|
```
|
|
167
|
-
.tee-cloud/
|
|
168
|
-
└── compose-files/ # Generated docker-compose files
|
|
169
|
-
```
|
|
170
200
|
|
|
171
|
-
|
|
201
|
+
If any character files fail to load, ElizaOS will:
|
|
202
|
+
|
|
203
|
+
- Log errors for the failed characters
|
|
204
|
+
- Continue starting with any successfully loaded characters
|
|
205
|
+
- Fall back to the default Eliza character if no characters loaded successfully
|
|
206
|
+
|
|
207
|
+
### Testing
|
|
208
|
+
|
|
209
|
+
#### `elizaos test`
|
|
210
|
+
|
|
211
|
+
Run tests for Eliza agent plugins and projects.
|
|
212
|
+
|
|
213
|
+
- **Subcommands:**
|
|
214
|
+
- `component`: Run component tests (via Vitest)
|
|
215
|
+
- `e2e`: Run end-to-end runtime tests
|
|
216
|
+
- `all`: Run both component and e2e tests (default)
|
|
217
|
+
- **Options:**
|
|
218
|
+
- `-p, --port <port>`: Port to listen on for e2e tests
|
|
219
|
+
- `-n, --name <n>`: Filter tests by name (matches file names or test suite names)
|
|
220
|
+
- `--skip-build`: Skip building before running tests
|
|
221
|
+
|
|
222
|
+
### Trusted Execution Environment (TEE) Management
|
|
223
|
+
|
|
224
|
+
#### `elizaos tee phala <subcommand>`
|
|
225
|
+
|
|
226
|
+
Manage TEE deployments with Phala vendor.
|
|
227
|
+
|
|
228
|
+
- **Subcommands:**
|
|
229
|
+
- `deploy`: Deploy to TEE cloud
|
|
230
|
+
- Options: `-t, --type <type>`, `-m, --mode <mode>`, `-n, --name <n>`, `-c, --compose <compose>`, `-e, --env <env...>`, `--env-file <envFile>`, `--debug`
|
|
231
|
+
- `teepods`: Query the teepods
|
|
232
|
+
- `images`: Query the images
|
|
233
|
+
- Options: `--teepod-id <teepodId>`
|
|
234
|
+
- `upgrade`: Upgrade the TEE CLI
|
|
235
|
+
- Options: `-m, --mode <mode>`, `--app-id <appId>`, `-e, --env <env...>`, `--env-file <envFile>`, `-c, --compose <compose>`
|
|
236
|
+
- `build-compose`: Build a docker-compose file for Eliza Agent
|
|
237
|
+
- Options: `-i, --image <n>`, `-u, --username <n>`, `-t, --tag <tag>`, `-c, --character <path>`, `-e, --env-file <path>`, `-v, --version <version>`
|
|
238
|
+
- `publish`: Publish Docker image to Docker Hub
|
|
239
|
+
- Options: `-i, --image <n>`, `-u, --username <n>`, `-t, --tag <tag>`
|
|
240
|
+
|
|
241
|
+
### Updates
|
|
242
|
+
|
|
243
|
+
#### `elizaos update`
|
|
244
|
+
|
|
245
|
+
Update ElizaOS CLI and project dependencies to the latest versions.
|
|
246
|
+
|
|
247
|
+
- **Options:**
|
|
248
|
+
- `-c, --check`: Check for available updates without applying them - shows what packages would be updated
|
|
249
|
+
- `-sb, --skip-build`: Skip building after updating
|
|
250
|
+
- `--cli`: Update only the global CLI installation (without updating packages)
|
|
251
|
+
- `--packages`: Update only packages (without updating the CLI)
|
|
252
|
+
|
|
253
|
+
### Environment Configuration
|
|
254
|
+
|
|
255
|
+
#### `elizaos env`
|
|
256
|
+
|
|
257
|
+
Manage environment variables and secrets.
|
|
258
|
+
|
|
259
|
+
- **Subcommands:**
|
|
260
|
+
- `list`: List all environment variables
|
|
261
|
+
- Options: `--system`, `--local`
|
|
262
|
+
- `edit-local`: Edit local environment variables
|
|
263
|
+
- Options: `-y, --yes`
|
|
264
|
+
- `reset`: Reset environment variables and clean up database/cache files
|
|
265
|
+
- Options: `-y, --yes`
|
|
266
|
+
- `interactive`: Start interactive environment variable manager
|
|
267
|
+
- Options: `-y, --yes`
|
|
268
|
+
|
|
269
|
+
### Publishing
|
|
270
|
+
|
|
271
|
+
#### `elizaos publish`
|
|
272
|
+
|
|
273
|
+
Publishes the current project or plugin.
|
|
274
|
+
|
|
275
|
+
- **Options:**
|
|
276
|
+
- `--dry-run`: Test run without publishing
|
|
277
|
+
- `--registry <repo>`: Specify target registry (default: 'elizaOS/registry')
|
|
278
|
+
|
|
279
|
+
## Development Guide
|
|
280
|
+
|
|
281
|
+
### Developing Agents
|
|
282
|
+
|
|
283
|
+
Agents are character definitions for ElizaOS bots.
|
|
284
|
+
|
|
285
|
+
1. **Create a new agent character**:
|
|
286
|
+
|
|
287
|
+
```bash
|
|
288
|
+
elizaos create my-assistant --type agent
|
|
289
|
+
```
|
|
290
|
+
|
|
291
|
+
This creates a JSON file (my-assistant.json) with the character definition.
|
|
292
|
+
|
|
293
|
+
2. **Start an agent with the character**:
|
|
294
|
+
|
|
295
|
+
```bash
|
|
296
|
+
elizaos agent start --path my-assistant.json
|
|
297
|
+
```
|
|
298
|
+
|
|
299
|
+
### Developing Plugins
|
|
300
|
+
|
|
301
|
+
Plugins extend the functionality of ElizaOS agents by providing additional capabilities or integrations.
|
|
302
|
+
|
|
303
|
+
1. **Create a new plugin**:
|
|
304
|
+
|
|
305
|
+
```bash
|
|
306
|
+
elizaos create my-plugin --type plugin
|
|
307
|
+
cd plugin-my-plugin # Note: CLI automatically adds plugin- prefix if not present
|
|
308
|
+
```
|
|
309
|
+
|
|
310
|
+
2. **Structure of a plugin**:
|
|
311
|
+
|
|
312
|
+
```
|
|
313
|
+
plugin-my-plugin/
|
|
314
|
+
├── src/ # Source code
|
|
315
|
+
│ └── index.ts # Main entry point defining the plugin
|
|
316
|
+
├── images/ # Required for publishing to registry
|
|
317
|
+
│ ├── logo.jpg # 400x400px square (<500KB)
|
|
318
|
+
│ └── banner.jpg # 1280x640px (<1MB)
|
|
319
|
+
├── package.json # Package configuration with agentConfig section
|
|
320
|
+
├── tsconfig.json # TypeScript configuration
|
|
321
|
+
└── README.md # Documentation
|
|
322
|
+
```
|
|
323
|
+
|
|
324
|
+
3. **Implement your plugin**:
|
|
325
|
+
|
|
326
|
+
Your plugin's main file (src/index.ts) should export a plugin object:
|
|
327
|
+
|
|
328
|
+
```typescript
|
|
329
|
+
import { type Plugin, type IAgentRuntime } from '@elizaos/core';
|
|
330
|
+
import { z } from 'zod';
|
|
172
331
|
|
|
173
|
-
|
|
174
|
-
|
|
175
|
-
|
|
176
|
-
|
|
332
|
+
// Define config schema for validation
|
|
333
|
+
const configSchema = z.object({
|
|
334
|
+
API_KEY: z.string().min(1, 'API key is required'),
|
|
335
|
+
});
|
|
177
336
|
|
|
178
|
-
|
|
337
|
+
// Export the plugin object
|
|
338
|
+
export const myPlugin: Plugin = {
|
|
339
|
+
name: 'plugin-my-plugin',
|
|
340
|
+
description: 'My custom plugin description',
|
|
179
341
|
|
|
180
|
-
|
|
342
|
+
// Config section maps environment variables to plugin settings
|
|
343
|
+
config: {
|
|
344
|
+
API_KEY: process.env.MY_PLUGIN_API_KEY,
|
|
345
|
+
},
|
|
181
346
|
|
|
182
|
-
|
|
347
|
+
// Initialization function
|
|
348
|
+
async init(config: Record<string, string>) {
|
|
349
|
+
// Validate config
|
|
350
|
+
const validatedConfig = await configSchema.parseAsync(config);
|
|
183
351
|
|
|
184
|
-
|
|
185
|
-
|
|
186
|
-
|
|
352
|
+
// Plugin setup
|
|
353
|
+
return {
|
|
354
|
+
// Plugin methods and handlers
|
|
355
|
+
// ...
|
|
356
|
+
};
|
|
357
|
+
},
|
|
358
|
+
};
|
|
187
359
|
|
|
188
|
-
|
|
360
|
+
// Default export
|
|
361
|
+
export default myPlugin;
|
|
362
|
+
```
|
|
189
363
|
|
|
190
|
-
|
|
191
|
-
- Ensure Docker has necessary permissions
|
|
364
|
+
4. **Configure package.json**:
|
|
192
365
|
|
|
193
|
-
|
|
194
|
-
- Verify API key is set correctly
|
|
195
|
-
- Check if image exists on Docker Hub
|
|
196
|
-
- Ensure environment variables are properly set
|
|
366
|
+
Add an `agentConfig` section to describe your plugin parameters:
|
|
197
367
|
|
|
198
|
-
|
|
368
|
+
```json
|
|
369
|
+
"agentConfig": {
|
|
370
|
+
"pluginType": "elizaos:plugin:1.0.0",
|
|
371
|
+
"pluginParameters": {
|
|
372
|
+
"API_KEY": {
|
|
373
|
+
"type": "string",
|
|
374
|
+
"description": "API key for the service"
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
```
|
|
379
|
+
|
|
380
|
+
5. **Test your plugin**:
|
|
381
|
+
|
|
382
|
+
```bash
|
|
383
|
+
bun run test
|
|
384
|
+
# Or with the CLI directly:
|
|
385
|
+
elizaos test --plugin
|
|
386
|
+
```
|
|
387
|
+
|
|
388
|
+
6. **Publish your plugin**:
|
|
389
|
+
|
|
390
|
+
```bash
|
|
391
|
+
# Test publishing process
|
|
392
|
+
elizaos plugins publish --test
|
|
393
|
+
|
|
394
|
+
# Publish to registry
|
|
395
|
+
elizaos plugins publish
|
|
396
|
+
|
|
397
|
+
# Or publish to npm
|
|
398
|
+
elizaos plugins publish --npm
|
|
399
|
+
```
|
|
400
|
+
|
|
401
|
+
### Developing Projects (Agents)
|
|
402
|
+
|
|
403
|
+
Projects contain agent configurations and code for building agent-based applications.
|
|
404
|
+
|
|
405
|
+
1. **Create a new project**:
|
|
406
|
+
|
|
407
|
+
```bash
|
|
408
|
+
elizaos create my-agent-project
|
|
409
|
+
cd my-agent-project
|
|
410
|
+
```
|
|
411
|
+
|
|
412
|
+
2. **Project structure**:
|
|
413
|
+
|
|
414
|
+
```
|
|
415
|
+
my-agent-project/
|
|
416
|
+
├── src/ # Source code
|
|
417
|
+
│ ├── index.ts # Main entry point with character definition
|
|
418
|
+
│ └── plugins.ts # Custom project plugin implementation
|
|
419
|
+
├── data/ # Data storage directory
|
|
420
|
+
│ └── uploads/ # For uploaded files
|
|
421
|
+
├── package.json # Package configuration
|
|
422
|
+
├── tsconfig.json # TypeScript configuration
|
|
423
|
+
└── README.md # Documentation
|
|
424
|
+
```
|
|
425
|
+
|
|
426
|
+
3. **Configure your agent**:
|
|
427
|
+
|
|
428
|
+
The main character definition is in src/index.ts:
|
|
429
|
+
|
|
430
|
+
```typescript
|
|
431
|
+
import { type Character } from '@elizaos/core';
|
|
432
|
+
|
|
433
|
+
export const character: Character = {
|
|
434
|
+
name: 'My Assistant',
|
|
435
|
+
plugins: [
|
|
436
|
+
'@elizaos/plugin-openai',
|
|
437
|
+
// Add other plugins here
|
|
438
|
+
],
|
|
439
|
+
system: 'You are a helpful assistant...',
|
|
440
|
+
bio: [
|
|
441
|
+
'Helpful and knowledgeable',
|
|
442
|
+
'Communicates clearly and concisely',
|
|
443
|
+
// Other character traits
|
|
444
|
+
],
|
|
445
|
+
messageExamples: [
|
|
446
|
+
// Example conversations
|
|
447
|
+
],
|
|
448
|
+
};
|
|
449
|
+
```
|
|
450
|
+
|
|
451
|
+
4. **Add plugins to your project**:
|
|
452
|
+
|
|
453
|
+
```bash
|
|
454
|
+
elizaos project add-plugin @elizaos/plugin-openai
|
|
455
|
+
```
|
|
456
|
+
|
|
457
|
+
5. **Run your project in development mode**:
|
|
458
|
+
|
|
459
|
+
```bash
|
|
460
|
+
bun run dev
|
|
461
|
+
# Or with the CLI directly:
|
|
462
|
+
elizaos dev
|
|
463
|
+
```
|
|
464
|
+
|
|
465
|
+
6. **Build and start your project**:
|
|
466
|
+
|
|
467
|
+
```bash
|
|
468
|
+
bun run build
|
|
469
|
+
bun run start
|
|
470
|
+
# Or with the CLI directly:
|
|
471
|
+
elizaos start
|
|
472
|
+
```
|
|
473
|
+
|
|
474
|
+
7. **Test your project**:
|
|
475
|
+
```bash
|
|
476
|
+
bun run test
|
|
477
|
+
# Or with the CLI directly:
|
|
478
|
+
elizaos test
|
|
479
|
+
```
|
|
480
|
+
|
|
481
|
+
## Contributing
|
|
482
|
+
|
|
483
|
+
For contributing to the ElizaOS CLI, please clone the monorepo using:
|
|
199
484
|
|
|
200
485
|
```bash
|
|
201
|
-
elizaos
|
|
202
|
-
elizaos tee phala <command> --help
|
|
486
|
+
elizaos setup-monorepo
|
|
203
487
|
```
|