-
Notifications
You must be signed in to change notification settings - Fork 5
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Extend entrypoint parameter #77
Conversation
I am afraid that this approach would not be easy to maintain. What about splitting the different components ? encoding: "squashfs"
entrypoint: "main:app"
language: "python"
interface: "asgi"
ref: ItemHash
use_latest: bool = False encoding: "squashfs"
entrypoint: "run dev"
language: "javascript"
interface: "npm"
ref: ItemHash
use_latest: bool = False encoding: "squashfs"
entrypoint: "http_server.exe"
language: "golang"
interface: "executable"
ref: ItemHash
use_latest: bool = False |
|
Just highlighting the changes from a29de08. Introducing default values to classes of fields of our message classes lead to verification errors on the Parsing past messages without the default values would lead to mismatch in
|
f8012ac
to
5e5fb7a
Compare
@hoh good to go |
…oint. Allows distinction between different types of plain code executions and more freedom in defining how it should be run.
Default values in `ProgramContent` could make `item_content` verification fail, as they get added upon parsing. Creating `item_content` now triggers a parsing of `ProgramContent` and dumps its resulting struct.
c0463bb
to
46f3038
Compare
In reference to aleph-im/aleph-vm#482.
Allows distinction between different types of plain code executions and more freedom in defining how it should be run.