Run the following command to create a formula:
rit create formula
Then, you'll have to inform those inputs before running the formula:
The command (following the pattern rit + group + verb + noun
to respect the tree pattern).
The formula's programming language.
The path used to save formula's files.
Example: rit demo create formula
You can test the formula directly after its creation. That's possible because the rit create formula
command also builds the formula automatically (it generates the formula's executable files and add them on .rit folder).
In that case, the formula "Hello World" template will be executed as shown below:
This template is composed of 4 inputs parameters, that represents the currently available kinds of inputs to use Ritchie:
A sample text
variable
A sample list
of text variables
A sample boolean
variable
A sample password
variable
When you finished your formula creation, it will be built and sent to a specific repository according to the name of your workspace with the prefix "local".
Example: if we have a workspace with the name Default
.
{"Default":"/home/user/ritchie-formula-local"}
A repository associated to this workspace will be created on the /home/user/.rit/repos
folder, and added on the repositories.json
file.
[{"provider": "Local","name": "local-default","version": "0.0.0","url": "local repository","priority": 0,"isLocal": true}]
On this section, you saw how to create a formula on Ritchie and test it. To keep configuring the formula:
👉 Go to implement a formula to understand how to edit the files Ritchie creates after formula creation.
👉 Go to build a formula to see how to continue the tests on the formulas you create.