mirror of
https://github.com/agent0ai/agent-zero.git
synced 2026-04-29 12:10:57 +00:00
Bundler prototype
Automated bundler for preinstalled packages. Bundling python executable and dependencies, imports project files respecting .gitignore.
This commit is contained in:
parent
ff6c196d15
commit
12d932df57
17 changed files with 2069 additions and 189 deletions
6
python/helpers/dotenv.py
Normal file
6
python/helpers/dotenv.py
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
from .files import get_abs_path
|
||||
from dotenv import load_dotenv as _load_dotenv
|
||||
|
||||
def load_dotenv():
|
||||
dotenv_path = get_abs_path(".env")
|
||||
_load_dotenv(dotenv_path)
|
||||
Loading…
Add table
Add a link
Reference in a new issue