A developer runs fn init --runtime python water-quality-check for a new OCI Function. What does that command produce?
Select an answer to reveal the explanation.
Short Explanation
fn init is unpacking the project kit on your desk: directory, func.yaml, and language starter files. It does not deploy, create the application, or push an image—that comes later.
Full Explanation
Official deploy flow: fn init --runtime <language> <name> creates the directory, func.yaml, and language scaffolding (for Java, a src tree and Maven file). It does not deploy, does not create the application, and does not push an image. Init is local project creation; fn deploy and application networking are separate steps.