This commit is contained in:
Joshua Perry 2024-06-08 18:50:53 +01:00
parent c55aeec48f
commit 42722f6327
5 changed files with 2217 additions and 0 deletions

2200
Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

11
docker-compose.yml Normal file
View File

@ -0,0 +1,11 @@
version: '3.1'
services:
mongo:
image: mongo
ports:
- 27017:27017
environment:
MONGO_INITDB_ROOT_USERNAME: root
MONGO_INITDB_ROOT_PASSWORD: example

6
server.Dockerfile Normal file
View File

@ -0,0 +1,6 @@
#TODO: rust builder
# build binary
# alpine image
# install python and pip
# pip install requirements.txt
# run binary

0
src/model/model.keras Normal file
View File

0
src/model/model.py Normal file
View File