order and annotate
This commit is contained in:
@ -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"
|
||||
|
Reference in New Issue
Block a user