pipeline fix
Some checks reported errors
continuous-integration/drone/push Build encountered an error

This commit is contained in:
2025-08-12 21:14:26 +09:00
parent ac8c2cd835
commit b282c44e7c
3 changed files with 36 additions and 4 deletions

View File

@@ -9,7 +9,7 @@ steps:
- name: dockersock - name: dockersock
path: /var/run path: /var/run
commands: commands:
- docker compose -f docker-compose.yml build --pull - docker compose build --no-cache
- name: migrate - name: migrate
image: docker:27 image: docker:27

5
.gitignore vendored
View File

@@ -1,5 +1,3 @@
<<<<<<< HEAD
=======
__pycache__/ __pycache__/
*.py[cod] *.py[cod]
*.egg-info/ *.egg-info/
@@ -15,4 +13,5 @@ alembic/versions/__pycache__/
.DS_Store .DS_Store
Thumbs.db Thumbs.db
.history .history
>>>>>>> 8024239 (init)
.fake

View File

@@ -1,3 +1,36 @@
[alembic] [alembic]
script_location = alembic script_location = alembic
sqlalchemy.url = ${DATABASE_URL} sqlalchemy.url = ${DATABASE_URL}
[loggers]
keys = root,sqlalchemy,alembic
[handlers]
keys = console
[formatters]
keys = generic
[logger_root]
level = WARN
handlers = console
qualname =
[logger_sqlalchemy]
level = WARN
handlers = console
qualname = sqlalchemy.engine
[logger_alembic]
level = INFO
handlers = console
qualname = alembic
[handler_console]
class = StreamHandler
args = (sys.stderr,)
level = NOTSET
formatter = generic
[formatter_generic]
format = %(levelname)-5.5s [%(name)s] %(message)s