From a532ef59384bde86a47b38791cca7cadb56a9cdf Mon Sep 17 00:00:00 2001 From: sharath <29162020+tnfssc@users.noreply.github.com> Date: Sat, 17 May 2025 23:11:33 +0000 Subject: [PATCH] hotfix(setup): uncomment required steps --- setup.py | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/setup.py b/setup.py index d96461e5..aad0e8e5 100644 --- a/setup.py +++ b/setup.py @@ -824,16 +824,16 @@ def main(): current_step += 1 - # # Collect all environment variables - # print_step(current_step, total_steps, "Collecting Supabase information") - # supabase_info = collect_supabase_info() - # # Set Supabase URL in environment for later use - # os.environ['SUPABASE_URL'] = supabase_info['SUPABASE_URL'] - # current_step += 1 + # Collect all environment variables + print_step(current_step, total_steps, "Collecting Supabase information") + supabase_info = collect_supabase_info() + # Set Supabase URL in environment for later use + os.environ['SUPABASE_URL'] = supabase_info['SUPABASE_URL'] + current_step += 1 - # print_step(current_step, total_steps, "Collecting Daytona information") - # daytona_info = collect_daytona_info() - # current_step += 1 + print_step(current_step, total_steps, "Collecting Daytona information") + daytona_info = collect_daytona_info() + current_step += 1 print_step(current_step, total_steps, "Collecting LLM API keys") llm_api_keys = collect_llm_api_keys() @@ -887,4 +887,4 @@ if __name__ == "__main__": main() except KeyboardInterrupt: print("\n\nSetup interrupted. You can resume setup anytime by running this script again.") - sys.exit(1) \ No newline at end of file + sys.exit(1)