upd .gitignore file

master
Ernest Litvinenko 2024-05-16 19:36:11 +03:00
parent 6468235037
commit 23d1a20459
4 changed files with 10 additions and 11 deletions

5
.gitignore vendored
View File

@ -28,3 +28,8 @@ archive.zip
# macOS
.DS_Store
data
.env
alembic/migrations/versions/*
!alembic/migrations/versions/.gitkeep
docker-compose.yml

View File

View File

@ -0,0 +1,5 @@
from pydantic import BaseModel
class LoginResponse(BaseModel):
access_token: str

View File

@ -1,11 +0,0 @@
services:
database:
image: postgres:alpine
environment:
POSTGRES_DB: mp_message
POSTGRES_USER: mp_user
POSTGRES_PASSWORD: mp_password
ports:
- "5432:5432"
volumes:
- ./data:/var/lib/postgresql/data