Skip to content

Commit 5ad807b

Browse files
authored
Moving to env (#71)
* fix: update coverage timestamp in coverage.xml * feat: add dotenv support for loading environment variables from .env files * feat: add Pipfile for dependency management and update coverage.xml timestamps * feat: add .env file for environment variable management and update load_env_files function * feat: enhance credential management by saving API tokens to .env file and updating fallback logic * chore: remove deprecated .env file containing sensitive API information * Refactor code structure for improved readability and maintainability * chore: update .gitignore to include coverage and build artifacts
1 parent f081491 commit 5ad807b

File tree

8 files changed

+328
-1504
lines changed

8 files changed

+328
-1504
lines changed

.coverage

-52 KB
Binary file not shown.

.gitignore

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,3 +6,18 @@ __pycache__/
66
build/
77
.penify/
88
.penify/*
9+
.env/
10+
*.env
11+
*.DS_Store
12+
*.log
13+
*.sqlite3
14+
*.db
15+
.env
16+
coverage.xml
17+
*.coverage
18+
*.cover
19+
*.egg
20+
*.egg-info
21+
*.whl
22+
*.zip
23+
.coverage

Pipfile

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
[[source]]
2+
url = "https://pypi.org/simple"
3+
verify_ssl = true
4+
name = "pypi"
5+
6+
[packages]
7+
requests = ">=2.25.0"
8+
gitpython = ">=3.1.0"
9+
tqdm = ">=4.62.0"
10+
python-dotenv = ">=1.0.0"
11+
pytest = ">=7.0.0"
12+
pytest-cov = ">=4.0.0"
13+
coverage = ">=6.0.0"
14+
coverage-badge = ">=1.1.0"
15+
16+
[dev-packages]
17+
18+
[requires]
19+
python_version = "3.13"

0 commit comments

Comments
 (0)