Skip to content
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

Terminal pane opens up to start GenAIScript server when I open a new workspace or project #1060

Closed
volkanunsal opened this issue Jan 28, 2025 · 3 comments

Comments

@volkanunsal
Copy link

Is there a simple hack to prevent this behavior? Can the server be launched in the background without opening the terminal pane?

Image
Copy link

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.

  1. 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 -->

@pelikhan
Copy link
Member

Hidden by default in the next release. It will prevent users from messing around with the server terminal.

@pelikhan
Copy link
Member

in 1.96

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants