Skip to content

Commit

Permalink
checkpoint-kai-1700365410
Browse files Browse the repository at this point in the history
  • Loading branch information
coilysiren committed Nov 19, 2023
1 parent 019f56e commit 858ed0b
Show file tree
Hide file tree
Showing 7 changed files with 796 additions and 52 deletions.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
.terraform
terraform.tfstate
terraform.tfstate.backup

venv
767 changes: 718 additions & 49 deletions Pipfile.lock

Large diffs are not rendered by default.

Binary file added app/.coverage
Binary file not shown.
15 changes: 15 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
help: ## Show this help.
@egrep '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'

install: ## install python packages
pyenv install --skip-existing
python -m venv venv
./venv/bin/pip install --upgrade pip pipenv
./venv/bin/pip install -r src/requirements-dev.txt
env PIPENV_VERBOSITY=-1 ./venv/bin/pipenv install

update: ## update and lock python packages
env PIPENV_VERBOSITY=-1 ./venv/bin/pipenv upgrade
env PIPENV_VERBOSITY=-1 ./venv/bin/pipenv update
env PIPENV_VERBOSITY=-1 ./venv/bin/pipenv requirements > src/requirements.txt
env PIPENV_VERBOSITY=-1 ./venv/bin/pipenv requirements --dev > src/requirements-dev.txt
44 changes: 44 additions & 0 deletions src/requirements-dev.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
-i https://pypi.org/simple
astroid==3.0.1; python_full_version >= '3.8.0'
blinker==1.7.0; python_version >= '3.8'
click==8.1.7; python_version >= '3.7'
colorama==0.4.6; python_version >= '2.7' and python_version not in '3.0, 3.1, 3.2, 3.3, 3.4, 3.5, 3.6'
coverage[toml]==7.3.2; python_version >= '3.8'
dill==0.3.7; python_version >= '3.11'
docopt==0.6.2
flake8==6.1.0; python_full_version >= '3.8.1'
flask==3.0.0; python_version >= '3.8'
flask-sqlalchemy==3.1.1; python_version >= '3.8'
greenlet==3.0.1; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32')))))
iniconfig==2.0.0; python_version >= '3.7'
invoke==2.2.0; python_version >= '3.6'
isort==5.12.0; python_full_version >= '3.8.0'
itsdangerous==2.1.2; python_version >= '3.7'
jinja2==3.1.2; python_version >= '3.7'
markupsafe==2.1.3; python_version >= '3.7'
mccabe==0.7.0; python_version >= '3.6'
mypy==1.7.0; python_version >= '3.8'
mypy-extensions==1.0.0; python_version >= '3.5'
packaging==23.2; python_version >= '3.7'
platformdirs==4.0.0; python_version >= '3.7'
pluggy==1.3.0; python_version >= '3.8'
pycodestyle==2.11.1; python_version >= '3.8'
pyflakes==3.1.0; python_version >= '3.8'
pylint==3.0.2; python_full_version >= '3.8.0'
pytest==7.4.3; python_version >= '3.7'
pytest-flask==1.3.0; python_version >= '3.7'
pytest-watch==4.2.0
pyyaml==6.0.1; python_version >= '3.6'
sqlalchemy==2.0.23; python_version >= '3.7'
tomlkit==0.12.3; python_version >= '3.7'
types-flask-migrate==4.0.0.7; python_version >= '3.7'
types-pyyaml==6.0.12.12
typing-extensions==4.8.0; python_version >= '3.8'
watchdog==3.0.0; python_version >= '3.7'
werkzeug==3.0.1; python_version >= '3.8'
alembic==1.12.1; python_version >= '3.7'
flask-migrate==4.0.5; python_version >= '3.6'
gunicorn==21.2.0; python_version >= '3.5'
mako==1.3.0; python_version >= '3.8'
pymemcache==4.0.0; python_version >= '3.7'
pytest-cov==4.1.0; python_version >= '3.7'
17 changes: 15 additions & 2 deletions src/requirements.txt
Original file line number Diff line number Diff line change
@@ -1,10 +1,23 @@
-i https://pypi.org/simple
blinker==1.6.3; python_version >= '3.7'
alembic==1.12.1; python_version >= '3.7'
blinker==1.7.0; python_version >= '3.8'
click==8.1.7; python_version >= '3.7'
coverage[toml]==7.3.2; python_version >= '3.8'
flask==3.0.0; python_version >= '3.8'
flask-migrate==4.0.5; python_version >= '3.6'
flask-sqlalchemy==3.1.1; python_version >= '3.8'
greenlet==3.0.1; platform_machine == 'aarch64' or (platform_machine == 'ppc64le' or (platform_machine == 'x86_64' or (platform_machine == 'amd64' or (platform_machine == 'AMD64' or (platform_machine == 'win32' or platform_machine == 'WIN32')))))
gunicorn==21.2.0; python_version >= '3.5'
iniconfig==2.0.0; python_version >= '3.7'
itsdangerous==2.1.2; python_version >= '3.7'
jinja2==3.1.2; python_version >= '3.7'
mako==1.3.0; python_version >= '3.8'
markupsafe==2.1.3; python_version >= '3.7'
packaging==23.2; python_version >= '3.7'
werkzeug==3.0.0; python_version >= '3.8'
pluggy==1.3.0; python_version >= '3.8'
pymemcache==4.0.0; python_version >= '3.7'
pytest==7.4.3; python_version >= '3.7'
pytest-cov==4.1.0; python_version >= '3.7'
sqlalchemy==2.0.23; python_version >= '3.7'
typing-extensions==4.8.0; python_version >= '3.8'
werkzeug==3.0.1; python_version >= '3.8'
3 changes: 3 additions & 0 deletions src/test/test.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
def test_true():
"""When all seems lost, the true test will always be there for you."""
assert True

0 comments on commit 858ed0b

Please sign in to comment.