order and annotate

This commit is contained in:
Dobromir Popov
2024-10-07 23:25:23 +03:00
parent 69cd254a42
commit 3889ac44a3
2 changed files with 107 additions and 77 deletions

View File

@ -12,4 +12,24 @@ Save the code in a file, e.g., solana_agent.py.
Run the Flask application:
`python app.py`
`python app.py`
generate requirements:#!/bin/bash
# Install necessary tools
pip install pipreqs pip-tools
# Generate initial requirements
pipreqs . --force
# Rename requirements.txt to requirements.in
mv requirements.txt requirements.in
# Generate updated requirements.txt
pip-compile requirements.in
# Optionally, update your environment
# pip-sync requirements.txt
echo "Requirements have been updated in requirements.txt"