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
To prevent the terminal pane from opening when starting the GenAIScript server, consider using an interactive command like `nohup` or `&`. Here are two methods:
1.**Using `nohup`:**```bash
nohup genaiscript start &
This will run the server in the background and not open a terminal.
Using &:
genaiscript start &
Similar to nohup, this runs the command in the background, avoiding the terminal pop-up.
Either method allows you to start GenAIScript in the background without opening the terminal pane.
> AI-generated content by [issue-reviewer](https://github.com/microsoft/genaiscript/actions/runs/13012936988) may be incorrect
<!-- genaiscript issue-reviewer -->
Is there a simple hack to prevent this behavior? Can the server be launched in the background without opening the terminal pane?
The text was updated successfully, but these errors were encountered: