-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b28b2f3
commit 61ee260
Showing
13 changed files
with
539 additions
and
40 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
[project] | ||
name = "klips" | ||
version = "2.0" | ||
description = "Patient management system" | ||
dependencies = [ | ||
"bottom==2.2.0", | ||
"pyyaml>=6.0", | ||
"click==8.0.1", | ||
"python-dateutil==2.8.2", | ||
"pytz==2021.3", | ||
"websockets==10.3", | ||
"tornado==6.1", | ||
"aiohttp<3.8.0", | ||
"aiomysql==0.1.1", | ||
"honcho==1.1.0", | ||
"aioredis<2.0", | ||
"pytest==6.2.5", | ||
"good==0.0.8", | ||
"yoyo-migrations==7.3.2", | ||
"discord2==2.0.1", | ||
"sentry-sdk==1.5.12", | ||
"pydantic==1.10.9", | ||
"apprise==1.4.0", | ||
"httpx==0.27.2", | ||
] | ||
|
||
[build-system] | ||
build-backend = "flit_core.buildapi" | ||
requires = ["flit_core>=3.2,<4"] | ||
|
||
[tool.ruff.format] | ||
quote-style = "single" | ||
|
||
[tool.ruff.lint] | ||
select = ["E4", "E7", "E9", "F", "I"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
""" | ||
""" | ||
|
||
from yoyo import step | ||
|
||
__depends__ = {'20240227_03_Yv2xH'} | ||
|
||
steps = [ | ||
step(''' | ||
CREATE TABLE IF NOT EXISTS `twitch_youtube` ( | ||
`channel_id` VARCHAR(32) NOT NULL, | ||
`token` VARCHAR(500) NOT NULL, | ||
`refresh_token` VARCHAR(500) NOT NULL, | ||
`handle` VARCHAR(500) NULL DEFAULT NULL, | ||
PRIMARY KEY (`channel_id`)) | ||
ENGINE = InnoDB | ||
DEFAULT CHARACTER SET = utf8mb4; | ||
'''), | ||
] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.