-
Notifications
You must be signed in to change notification settings - Fork 73
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
feat(cmd): add next steps hint after template install #417
Conversation
rektdeckard
commented
Sep 16, 2024
- Reverts to using default terminal color palette, since branded colors do not always play nice with light terminal themes
- Adds hint text to guide users to start agent after install
ad30004
to
f504a8f
Compare
f3aba4c
to
33e4319
Compare
{ | ||
Hidden: true, | ||
Name: "run", | ||
Usage: "Execute a task defined in " + bootstrap.TaskFile, | ||
ArgsUsage: "[TASK] to run in the project's taskfile.yaml", | ||
Action: runTask, | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@davidzhao hiding this command for now. my other idea was to have a post_create
task or smth that runs after we clone, degit, and inflate the environment. All it would do is print the steps to install and get started:
tobiasfried@slate /tmp % lk app sandbox --id 5lfwjtkd6cy
Using default project [Atrium]
Cloning template...
Instantiating environment...
Done! To setup and run your sandbox:
cd /tmp/foo
python3 -m venv venv
source venv/bin/activate
python3 -m pip install -r requirements.txt
python3 agent.py start
tobiasfried@slate /tmp %
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
great, I think this is perfect!
{ | ||
Hidden: true, | ||
Name: "run", | ||
Usage: "Execute a task defined in " + bootstrap.TaskFile, | ||
ArgsUsage: "[TASK] to run in the project's taskfile.yaml", | ||
Action: runTask, | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
great, I think this is perfect!