move ai python server into seperate repo

This commit is contained in:
2025-01-11 01:44:39 +01:00
parent 489386b492
commit 062e055813
27 changed files with 17 additions and 66 deletions

9
Makefile Normal file
View File

@@ -0,0 +1,9 @@
go-run:
cd src; DB_USER=crow DB_PASS=4LlKpnQ2RZPzL13BSpkW4k DB_NAME=crowsnest DB_HOST=10.99.0.3 go run cmd/frontend/*
docker-run: docker-build
docker run --rm -p 8080:8080 --env DB_PASS="4LlKpnQ2RZPzL13BSpkW4k" git.kohout-dev.de/crowsnest/crowsnest:latest
docker-build:
docker build --platform linux/amd64 -t git.kohout-dev.de/crowsnest/crowsnest:latest . \
&& docker push git.kohout-dev.de/crowsnest/crowsnest:latest