Remove .env from git and add to gitignore
Browse filesThe .env file contains secrets and should not be in version control.
Users should copy .env.example and configure their own credentials.
Generated with [Claude Code](https://claude.com/claude-code)
via [Happy](https://happy.engineering)
Co-Authored-By: Claude <noreply@anthropic.com>
Co-Authored-By: Happy <yesreply@happy.engineering>
- .env.example +8 -0
- .gitignore +1 -0
.env.example
ADDED
|
@@ -0,0 +1,8 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 1 |
+
# CVAT CONFIGURATION
|
| 2 |
+
CVAT_URL=https://app.cvat.ai
|
| 3 |
+
CVAT_USERNAME=your_username
|
| 4 |
+
CVAT_PASSWORD=your_password
|
| 5 |
+
CVAT_ORGANIZATION=your_organization
|
| 6 |
+
|
| 7 |
+
# HUGGING FACE CONFIGURATION
|
| 8 |
+
HUGGINGFACE_TOKEN=your_hf_token
|
.gitignore
CHANGED
|
@@ -39,3 +39,4 @@ transformers_cache/
|
|
| 39 |
# Don’t ignore model folder (HF needs it)
|
| 40 |
# /model/ is intentionally NOT ignored
|
| 41 |
sam.code-workspace
|
|
|
|
|
|
| 39 |
# Don’t ignore model folder (HF needs it)
|
| 40 |
# /model/ is intentionally NOT ignored
|
| 41 |
sam.code-workspace
|
| 42 |
+
.env
|