Spaces:
Sleeping
Sleeping
Added post api method to support file upload
Browse files
.dockerignore
CHANGED
@@ -1,4 +1,5 @@
|
|
1 |
__pycache__
|
2 |
storage
|
3 |
data/*
|
4 |
-
venv
|
|
|
|
1 |
__pycache__
|
2 |
storage
|
3 |
data/*
|
4 |
+
venv
|
5 |
+
myvenv
|
.gitignore
CHANGED
@@ -2,4 +2,5 @@ __pycache__
|
|
2 |
storage
|
3 |
.env
|
4 |
data/*
|
5 |
-
venv
|
|
|
|
2 |
storage
|
3 |
.env
|
4 |
data/*
|
5 |
+
venv
|
6 |
+
myvenv
|
app/api/routers/file_upload.py
ADDED
File without changes
|
file_upload_backend/README.md
ADDED
File without changes
|
file_upload_backend/file_upload_backend/__init__.py
ADDED
File without changes
|
file_upload_backend/pyproject.toml
ADDED
@@ -0,0 +1,14 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
[tool.poetry]
|
2 |
+
name = "file-upload-backend"
|
3 |
+
version = "0.1.0"
|
4 |
+
description = ""
|
5 |
+
authors = ["Patrick Alexis <alexispatrick77@gmail.com>"]
|
6 |
+
readme = "README.md"
|
7 |
+
|
8 |
+
[tool.poetry.dependencies]
|
9 |
+
python = "^3.8"
|
10 |
+
|
11 |
+
|
12 |
+
[build-system]
|
13 |
+
requires = ["poetry-core"]
|
14 |
+
build-backend = "poetry.core.masonry.api"
|
file_upload_backend/tests/__init__.py
ADDED
File without changes
|