Spaces:
Paused
Paused
Trisha Tomy
commited on
Commit
·
a279659
1
Parent(s):
e6ec53e
cleaning up repo
Browse files
.gitignore
CHANGED
|
@@ -16,6 +16,31 @@ config.json
|
|
| 16 |
.sf/
|
| 17 |
.sfdx/
|
| 18 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 19 |
# Python Virtual Environments (Regenerable)
|
| 20 |
venv/
|
| 21 |
.venv/
|
|
|
|
| 16 |
.sf/
|
| 17 |
.sfdx/
|
| 18 |
|
| 19 |
+
# IDE-specific files (NEVER COMMIT)
|
| 20 |
+
.idea/
|
| 21 |
+
.vscode/
|
| 22 |
+
*.iml
|
| 23 |
+
*.ipr
|
| 24 |
+
*.iws
|
| 25 |
+
.project
|
| 26 |
+
.classpath
|
| 27 |
+
.settings/
|
| 28 |
+
|
| 29 |
+
# Python cache and compiled files (Regenerable)
|
| 30 |
+
__pycache__/
|
| 31 |
+
*.py[cod]
|
| 32 |
+
*$py.class
|
| 33 |
+
*.so
|
| 34 |
+
*.egg-info/
|
| 35 |
+
.installed.cfg
|
| 36 |
+
*.egg
|
| 37 |
+
MANIFEST
|
| 38 |
+
|
| 39 |
+
# Lock files (system-specific)
|
| 40 |
+
uv.lock
|
| 41 |
+
poetry.lock
|
| 42 |
+
Pipfile.lock
|
| 43 |
+
|
| 44 |
# Python Virtual Environments (Regenerable)
|
| 45 |
venv/
|
| 46 |
.venv/
|
proxy-lite-demo-v2/.idea/libraries/my_test_package.xml
DELETED
|
@@ -1,9 +0,0 @@
|
|
| 1 |
-
<component name="libraryTable">
|
| 2 |
-
<library name="my-test-package">
|
| 3 |
-
<CLASSES>
|
| 4 |
-
<root url="jar://$PROJECT_DIR$/venv/lib/python3.13/site-packages/pkg_resources/tests/data/my-test-package-zip/my-test-package.zip!/" />
|
| 5 |
-
</CLASSES>
|
| 6 |
-
<JAVADOC />
|
| 7 |
-
<SOURCES />
|
| 8 |
-
</library>
|
| 9 |
-
</component>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
proxy-lite-demo-v2/.idea/misc.xml
DELETED
|
@@ -1,6 +0,0 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
-
<project version="4">
|
| 3 |
-
<component name="ProjectRootManager" version="2" languageLevel="JDK_24" default="true" project-jdk-name="24" project-jdk-type="JavaSDK">
|
| 4 |
-
<output url="file://$PROJECT_DIR$/out" />
|
| 5 |
-
</component>
|
| 6 |
-
</project>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
proxy-lite-demo-v2/.idea/modules.xml
DELETED
|
@@ -1,8 +0,0 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
-
<project version="4">
|
| 3 |
-
<component name="ProjectModuleManager">
|
| 4 |
-
<modules>
|
| 5 |
-
<module fileurl="file://$PROJECT_DIR$/.idea/proxy-lite-demo-v2.iml" filepath="$PROJECT_DIR$/.idea/proxy-lite-demo-v2.iml" />
|
| 6 |
-
</modules>
|
| 7 |
-
</component>
|
| 8 |
-
</project>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
proxy-lite-demo-v2/.idea/proxy-lite-demo-v2.iml
DELETED
|
@@ -1,9 +0,0 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
-
<module type="JAVA_MODULE" version="4">
|
| 3 |
-
<component name="NewModuleRootManager" inherit-compiler-output="true">
|
| 4 |
-
<exclude-output />
|
| 5 |
-
<content url="file://$MODULE_DIR$" />
|
| 6 |
-
<orderEntry type="inheritedJdk" />
|
| 7 |
-
<orderEntry type="sourceFolder" forTests="false" />
|
| 8 |
-
</component>
|
| 9 |
-
</module>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
proxy-lite-demo-v2/.idea/vcs.xml
DELETED
|
@@ -1,6 +0,0 @@
|
|
| 1 |
-
<?xml version="1.0" encoding="UTF-8"?>
|
| 2 |
-
<project version="4">
|
| 3 |
-
<component name="VcsDirectoryMappings">
|
| 4 |
-
<mapping directory="" vcs="Git" />
|
| 5 |
-
</component>
|
| 6 |
-
</project>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
proxy-lite-demo-v2/uv.lock
DELETED
|
The diff for this file is too large to render.
See raw diff
|
|
|