Skip to content

Commit 600ca03

Browse files
format correctly
1 parent 7a07dda commit 600ca03

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

README.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,23 +20,29 @@ AssetIQ is a novel, real-time asset valuation system for smart connected devices
2020

2121
2. **Create a Virtual Environment and Install Dependencies:**
2222

23+
```
2324
python -m venv venv
2425
source venv/bin/activate # On Windows: venv\Scripts\activate
2526
pip install -r requirements.txt
27+
```
2628
2729
3. **Run Unit Tests:**
2830
31+
```
2932
pytest tests/
33+
```
3034
3135
4. **Run the API Locally:**
32-
36+
```
3337
uvicorn app.main:app --reload
38+
```
3439
3540
Access the API at <http://localhost:8000>
3641
3742
5. **Build and Run Docker Container(if built up):**
38-
43+
```
3944
docker build -t assetIQ
4045
docker run -p 8000:8000 assetIQ
46+
```
4147
4248

0 commit comments

Comments
 (0)