Remove PyPi build, convert project to not be a python module, add Docker build and files, update README,

This commit is contained in:
csd4ni3l
2025-10-23 11:01:21 +02:00
parent a9b5a53bdb
commit 391d55edba
16 changed files with 77 additions and 60 deletions

16
docker-compose.yml Normal file
View File

@@ -0,0 +1,16 @@
services:
loginween:
image: csd4ni3lofficial/loginween:latest
build: .
container_name: loginween
ports:
- "8080:8080"
environment:
HOST: "0.0.0.0"
PORT: 8080
DB_FILE: "data.db"
APP_KEY: "changeme"
DEBUG_MODE: false
volumes:
- ./data.db:/app/data.db
restart: unless-stopped