Compare commits
No commits in common. "fa46ce22a2d2e8a50707075f69e1b8ea0da79273" and "4152024ce7f2c030707ce080110f6ca2ea86ebea" have entirely different histories.
fa46ce22a2
...
4152024ce7
@ -1,4 +1,3 @@
|
||||
*
|
||||
.*
|
||||
!d1/blank-app-nginx.conf
|
||||
!docker/checks
|
||||
|
||||
2
.gitignore
vendored
2
.gitignore
vendored
@ -16,5 +16,3 @@ python/build
|
||||
.*.kate-swp
|
||||
!releases/whl/*.whl
|
||||
.env
|
||||
!docker/*/.env
|
||||
.envs
|
||||
|
||||
5
Makefile
5
Makefile
@ -133,11 +133,6 @@ venv_compile:
|
||||
uv pip compile --generate-hashes \
|
||||
requirements.in > requirements.txt
|
||||
|
||||
compose_env:
|
||||
for s in checks; do \
|
||||
cat docker/$$s/.env .envs/$$s.env > .envs/$$s.patched.env; \
|
||||
done
|
||||
|
||||
MYPY_SOURCES ?= \
|
||||
d1/cpanel.py
|
||||
mypy:
|
||||
|
||||
@ -30,14 +30,6 @@ services:
|
||||
- ./tmp/d1/letsencrypt:/etc/letsencrypt:rw
|
||||
restart: on-failure
|
||||
|
||||
checks:
|
||||
build:
|
||||
context: .
|
||||
dockerfile: ./docker/checks/Dockerfile
|
||||
init: true
|
||||
env_file:
|
||||
.envs/checks.patched.env
|
||||
|
||||
cpanel:
|
||||
build:
|
||||
context: .
|
||||
@ -48,7 +40,6 @@ services:
|
||||
- ./d1/:/app/d1:ro
|
||||
- ./tmp/d1/:/app/tmp/d1/:ro
|
||||
restart: on-failure
|
||||
|
||||
dynu:
|
||||
build:
|
||||
context: .
|
||||
|
||||
@ -1,4 +0,0 @@
|
||||
# UVICORN_HOST=127.0.0.1
|
||||
# UVICORN_PORT=80
|
||||
# HTTP_AUTH_USERNAME=test
|
||||
# HTTP_AUTH_PASSWORD=blah
|
||||
@ -1,8 +0,0 @@
|
||||
FROM alpine@sha256:56fa17d2a7e7f168a043a2712e63aed1f8543aeafdcee47c58dcffe38ed51099
|
||||
|
||||
|
||||
WORKDIR /app
|
||||
|
||||
COPY ./docker/checks/rest.py ./docker/checks/rest.py
|
||||
|
||||
CMD ["python3", "docker/checks/rest.py"]
|
||||
@ -1,5 +0,0 @@
|
||||
def main() -> None:
|
||||
raise NotImplementedError
|
||||
|
||||
if __name__ == '__main__':
|
||||
main()
|
||||
Loading…
Reference in New Issue
Block a user