Merge pull request #353 from tnfssc/chore/setup-update

hotfix(setup): uncomment required steps
This commit is contained in:
Marko Kraemer 2025-05-18 01:13:52 +02:00 committed by GitHub
commit e13aa2f1c3
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 10 additions and 10 deletions

View File

@ -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)