Spaces:
Running
Running
Add .env.example template and clean up README.md
Browse filesIntroduced a sample environment file (.env.example) for easier configuration and removed outdated metadata from the README. These changes improve project clarity and setup guidance.
- .env.example +9 -0
- README.md +0 -9
.env.example
ADDED
@@ -0,0 +1,9 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
# Configurations
|
2 |
+
FASTAPI_CONFIG=development
|
3 |
+
SECRET=''
|
4 |
+
|
5 |
+
# MongoDB
|
6 |
+
MONGO_DB_URL=''
|
7 |
+
|
8 |
+
# OpenAI
|
9 |
+
OPENAI_API_KEY=''
|
README.md
CHANGED
@@ -1,9 +0,0 @@
|
|
1 |
-
---
|
2 |
-
title: TraumaBackend
|
3 |
-
emoji: 🦀
|
4 |
-
colorFrom: yellow
|
5 |
-
colorTo: pink
|
6 |
-
sdk: docker
|
7 |
-
pinned: false
|
8 |
-
---
|
9 |
-
Check out the configuration reference at https://huggingface.co/docs/hub/spaces-config-reference
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|