mirror of https://github.com/kortix-ai/suna.git
Merge pull request #353 from tnfssc/chore/setup-update
hotfix(setup): uncomment required steps
This commit is contained in:
commit
e13aa2f1c3
20
setup.py
20
setup.py
|
@ -824,16 +824,16 @@ def main():
|
||||||
|
|
||||||
current_step += 1
|
current_step += 1
|
||||||
|
|
||||||
# # Collect all environment variables
|
# Collect all environment variables
|
||||||
# print_step(current_step, total_steps, "Collecting Supabase information")
|
print_step(current_step, total_steps, "Collecting Supabase information")
|
||||||
# supabase_info = collect_supabase_info()
|
supabase_info = collect_supabase_info()
|
||||||
# # Set Supabase URL in environment for later use
|
# Set Supabase URL in environment for later use
|
||||||
# os.environ['SUPABASE_URL'] = supabase_info['SUPABASE_URL']
|
os.environ['SUPABASE_URL'] = supabase_info['SUPABASE_URL']
|
||||||
# current_step += 1
|
current_step += 1
|
||||||
|
|
||||||
# print_step(current_step, total_steps, "Collecting Daytona information")
|
print_step(current_step, total_steps, "Collecting Daytona information")
|
||||||
# daytona_info = collect_daytona_info()
|
daytona_info = collect_daytona_info()
|
||||||
# current_step += 1
|
current_step += 1
|
||||||
|
|
||||||
print_step(current_step, total_steps, "Collecting LLM API keys")
|
print_step(current_step, total_steps, "Collecting LLM API keys")
|
||||||
llm_api_keys = collect_llm_api_keys()
|
llm_api_keys = collect_llm_api_keys()
|
||||||
|
@ -887,4 +887,4 @@ if __name__ == "__main__":
|
||||||
main()
|
main()
|
||||||
except KeyboardInterrupt:
|
except KeyboardInterrupt:
|
||||||
print("\n\nSetup interrupted. You can resume setup anytime by running this script again.")
|
print("\n\nSetup interrupted. You can resume setup anytime by running this script again.")
|
||||||
sys.exit(1)
|
sys.exit(1)
|
||||||
|
|
Loading…
Reference in New Issue