Skip to content

Commit 48e61d6

Browse files
committed
env setting and .gitignore
1 parent 12e7dc7 commit 48e61d6

File tree

2 files changed

+55
-1
lines changed

2 files changed

+55
-1
lines changed

leetcode_backend/.gitignore

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
# Python
2+
__pycache__/
3+
*.pyc
4+
*.pyo
5+
*.pyd
6+
.Python
7+
env/
8+
venv/
9+
*.env
10+
.idea/ # For PyCharm/IntelliJ users
11+
.vscode/ # For VS Code users (if you have user-specific settings)
12+
*.egg-info/
13+
.pytest_cache/
14+
.DS_Store # macOS specific
15+
16+
# Django
17+
db.sqlite3
18+
/media/
19+
/static_root/ # Or whatever your STATIC_ROOT is set to
20+
.env # If you use a .env file for environment variables
21+
*.log
22+
local_settings.py # If you have a local settings file not meant for production
23+
24+
# Other OS-specific files
25+
Thumbs.db

leetcode_backend/requirements.txt

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,33 @@
1+
annotated-types==0.7.0
12
asgiref==3.8.1
3+
cachetools==5.5.2
4+
certifi==2025.6.15
5+
charset-normalizer==3.4.2
26
Django==5.2.3
7+
django-cors-headers==4.7.0
8+
google-ai-generativelanguage==0.6.15
9+
google-api-core==2.25.1
10+
google-api-python-client==2.174.0
11+
google-auth==2.40.3
12+
google-auth-httplib2==0.2.0
13+
google-generativeai==0.8.5
14+
googleapis-common-protos==1.70.0
15+
grpcio==1.73.1
16+
grpcio-status==1.71.2
17+
httplib2==0.22.0
18+
idna==3.10
19+
proto-plus==1.26.1
20+
protobuf==5.29.5
21+
pyasn1==0.6.1
22+
pyasn1_modules==0.4.2
23+
pydantic==2.11.7
24+
pydantic_core==2.33.2
25+
pyparsing==3.2.3
26+
requests==2.32.4
27+
rsa==4.9.1
328
sqlparse==0.5.3
4-
tzdata==2025.2
29+
tqdm==4.67.1
30+
typing-inspection==0.4.1
31+
typing_extensions==4.14.0
32+
uritemplate==4.2.0
33+
urllib3==2.5.0

0 commit comments

Comments
 (0)