Listing scripts
ThegetOperate script list command is used to list all scripts in the remote workspace.
Pushing a script
The getOperate script push command is used to push a local script to the remote server, overriding any existing remote versions of the script. This command allows you to manage and synchronize your scripts across different environments. This command support .ts, .js, .py, .go and .sh files.Arguments
Examples
- Push the script located at
/path/to/script.js
Creating a new script
The getOperate script bootstrap command is used to create a new script locally in the desired language.Arguments
Examples
- Create a new python script
f/scripts/hallowed_script
- Create a new deno script
f/scripts/auspicious_scriptwith a summary and a description
(Re-)Generating a script metadata file
The getOperate script generate-metadata command is used to update a script metadata file, inferring the script schema from the script content and generating the locks. Only the schema and the locks part of the metadata file will be updated. If a change was made to other fields like description or summary, it will be kept.Arguments
Examples
- After update the of the script f/scripts/hallowed_script.py, re-generate its schema and its locks:
Showing a script
The getOperate script show command is used to show the contents of a script on the remote server.Arguments
Examples
- Show the script located at
f/scripts/test
Running a script
Running a script by its path s done using thegetOperate script run command.