initial commit

worked on async alembic migrations, User model.

Current issue:

web_1      | INFO:     172.20.0.1:62958 - "POST /users/ HTTP/1.1" 500 Internal Server Error
web_1      | ERROR:    Exception in ASGI application
web_1      | Traceback (most recent call last):
...
web_1      | response
web_1      |   value is not a valid dict (type=type_error.dict)

when trying to create new user
This commit is contained in:
2022-12-19 01:18:25 +03:00
commit b3c5c032cf
19 changed files with 1663 additions and 0 deletions

22
Pipfile Normal file
View File

@@ -0,0 +1,22 @@
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
fastapi = {extras = ["all"], version = "*"}
fastapi-sqlalchemy = "*"
pydantic = "*"
alembic = "*"
sqlmodel = "*"
asyncpg = "==0.27.0"
sqlalchemy = {extras = ["asyncio"], version = "*"}
python-multipart = "*"
python-jose = {extras = ["cryptography"], version = "*"}
passlib = {extras = ["bcrypt"], version = "*"}
python-dotenv = "*"
[dev-packages]
[requires]
python_version = "3.10"