Skip to content

Commit 8098946

Browse files
committed
🎨 banishing ds_store file from git tracking
1 parent 69764e1 commit 8098946

File tree

4 files changed

+23
-2
lines changed

4 files changed

+23
-2
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -127,3 +127,6 @@ dmypy.json
127127

128128
# Pyre type checker
129129
.pyre/
130+
131+
# Mac OS Desktop store file
132+
.DS_Store

docker-compose.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,5 +8,5 @@ services:
88
dockerfile: Dockerfile
99
ports:
1010
- "3000:3000"
11-
volumes:
12-
- ./app1:/app
11+
# volumes:
12+
# - ./app1:/app

requirements.txt

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
requests==2.22.0
2+
uvicorn==0.11.2
3+
fastapi==0.48.0
4+
numpy==1.18.1
5+
scikit-learn==0.22.1
6+
joblib==0.14.1
7+
loguru==0.4.1

setup.py

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
#!/usr/bin/env python
2+
3+
from distutils.core import setup
4+
5+
setup(name='FastAPI Skeleton',
6+
version='1.0',
7+
description='Sample code for FastAPI',
8+
author='Jason Eisele',
9+
author_email='jeisele@shipt.com',
10+
packages=['fastapi_skeleton'],
11+
)

0 commit comments

Comments
 (0)