Skip to content

oleg-korshunov/payment-service

Folders and files

NameName
Last commit message
Last commit date

Latest commit

8f4fe18 · Jan 6, 2025

History

10 Commits
Jan 6, 2025
Jan 4, 2025
Jan 2, 2025
Jan 5, 2025
Jan 2, 2025
Jan 2, 2025
Jan 2, 2025
Jan 2, 2025
Jan 2, 2025
Jan 3, 2025
Jan 2, 2025
Jan 2, 2025
Jan 2, 2025
Jan 2, 2025
Jan 2, 2025
Jan 2, 2025
Jan 4, 2025
Jan 2, 2025
Jan 4, 2025

Repository files navigation

Run everything

docker-compose up

Run tests

docker-compose run app pytest

See docker image commands in entrypoint.sh

Make migrations

docker-compose run app alembic revision --autogenerate -m "01_initial_migration"

Apply migrations

docker-compose run app alembic upgrade head

Config for vscode:

{
    "version": "0.2.0",
    "configurations": [
        {
            "name": "Payment service debug",
            "type": "debugpy",
            "request": "launch",
            "module": "uvicorn",
            "args": [
                "app.main:app",
                "--reload",
                "--host",
                "0.0.0.0",
                "--port",
                "8000",
            ],
            "envFile": "${workspaceFolder}/.env"
        }
    ]
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published