2024-07-15 20:17:12 +08:00
|
|
|
===============================
|
2024-07-22 12:49:03 +08:00
|
|
|
Framework Design & Components
|
2024-07-15 20:17:12 +08:00
|
|
|
===============================
|
|
|
|
|
|
2024-07-22 12:49:03 +08:00
|
|
|
Framework & Components
|
2024-07-15 20:17:12 +08:00
|
|
|
=========================
|
|
|
|
|
|
2024-07-22 12:49:03 +08:00
|
|
|
- TODO: Components & Feature Level
|
2024-07-15 20:17:12 +08:00
|
|
|
|
2024-07-22 12:49:03 +08:00
|
|
|
- Class Level Figure
|
|
|
|
|
|
|
|
|
|
Detailed Design
|
2024-07-15 20:17:12 +08:00
|
|
|
=========================
|
|
|
|
|
|
|
|
|
|
|
2024-07-22 12:49:03 +08:00
|
|
|
Configuration
|
|
|
|
|
-------------
|
|
|
|
|
|
|
|
|
|
You can manually source the `.env` file in your shell before running the Python script:
|
|
|
|
|
Most of the workflow are controlled by the environment variables.
|
|
|
|
|
```sh
|
|
|
|
|
# Export each variable in the .env file; Please note that it is different from `source .env` without export
|
|
|
|
|
export $(grep -v '^#' .env | xargs)
|
|
|
|
|
# Run the Python script
|
|
|
|
|
python your_script.py
|
|
|
|
|
```
|
2024-07-15 20:17:12 +08:00
|
|
|
|