You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently the CLI requires that users add the path to their auxilary and config schemas. This isn't strictly necessary, as programs can be deployed without them. There's a similar issue over in the the Entropy Core repo to remove the need for these files.
The text was updated successfully, but these errors were encountered:
johnnymatthews
changed the title
Allow users to not add schema files.
Allow users to not add schema files when deploying programs.
Nov 20, 2024
@johnnymatthews we're still nailing down the specification around schema. I think you're right this is gonna need to change, but will hold till we have more coherence before executing:
I tried supplying the CLI with a couple of empty .json files, but it didn't like that:
Deployment failed: SyntaxError: Unexpected end of JSON input
at JSON.parse (<anonymous>)
at file:///home/johnny/Code/entropy/cli/dist/cli.js:11428:71
at async EntropyProgram.deploy (file:///home/johnny/Code/entropy/cli/dist/cli.js:11535:33)
at async deployProgramTUI (file:///home/johnny/Code/entropy/cli/dist/cli.js:11862:21)
at async entropyProgramDev (file:///home/johnny/Code/entropy/cli/dist/cli.js:11831:3)
at async main (file:///home/johnny/Code/entropy/cli/dist/cli.js:12001:9)
Understandable since I think the CLI uses those files to display info back to the user.
Currently the CLI requires that users add the path to their auxilary and config schemas. This isn't strictly necessary, as programs can be deployed without them. There's a similar issue over in the the Entropy Core repo to remove the need for these files.
The text was updated successfully, but these errors were encountered: