Spaces:
Sleeping
Sleeping
suhail commited on
Commit ·
db3c291
1
Parent(s): b5e6f76
cleanup: ignore venv, pycache, env files
Browse files- .dockerignore +1 -0
- .env +1 -1
- .gitignore +8 -0
- src/core/__pycache__/security.cpython-313.pyc +0 -0
- src/mcp/__pycache__/__init__.cpython-313.pyc +0 -0
.dockerignore
CHANGED
|
@@ -61,3 +61,4 @@ package-lock.json
|
|
| 61 |
|
| 62 |
# Temp / AI tools
|
| 63 |
tmpclaude-*
|
|
|
|
|
|
| 61 |
|
| 62 |
# Temp / AI tools
|
| 63 |
tmpclaude-*
|
| 64 |
+
venv
|
.env
CHANGED
|
@@ -6,7 +6,7 @@ DATABASE_URL=postgresql://neondb_owner:npg_MmFvJBHT8Y0k@ep-silent-thunder-ab0rbv
|
|
| 6 |
# Application Settings
|
| 7 |
APP_NAME=Task CRUD API
|
| 8 |
DEBUG=True
|
| 9 |
-
CORS_ORIGINS=
|
| 10 |
|
| 11 |
# Authentication
|
| 12 |
BETTER_AUTH_SECRET=zMdW1P03wJvWJnLKzQ8YYO26vHeinqmR
|
|
|
|
| 6 |
# Application Settings
|
| 7 |
APP_NAME=Task CRUD API
|
| 8 |
DEBUG=True
|
| 9 |
+
CORS_ORIGINS=http://localhost:3000
|
| 10 |
|
| 11 |
# Authentication
|
| 12 |
BETTER_AUTH_SECRET=zMdW1P03wJvWJnLKzQ8YYO26vHeinqmR
|
.gitignore
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# Python
|
| 2 |
+
venv/
|
| 3 |
+
__pycache__/
|
| 4 |
+
*.pyc
|
| 5 |
+
.env
|
| 6 |
+
# Alembic cache
|
| 7 |
+
alembic/versions/__pycache__/
|
| 8 |
+
# Node
|
src/core/__pycache__/security.cpython-313.pyc
CHANGED
|
Binary files a/src/core/__pycache__/security.cpython-313.pyc and b/src/core/__pycache__/security.cpython-313.pyc differ
|
|
|
src/mcp/__pycache__/__init__.cpython-313.pyc
CHANGED
|
Binary files a/src/mcp/__pycache__/__init__.cpython-313.pyc and b/src/mcp/__pycache__/__init__.cpython-313.pyc differ
|
|
|