add contributing guideline with docker and local developer setup

This commit is contained in:
sigseg5
2026-02-06 22:42:51 +03:00
parent 1a0c39693e
commit 9b08f181a6
3 changed files with 111 additions and 1 deletions

15
docker-compose.dev.yml Normal file
View File

@@ -0,0 +1,15 @@
services:
xui:
build:
context: .
target: builder
working_dir: /app
volumes:
- .:/app
- ./dev/db:/etc/x-ui
environment:
XUI_BIN_FOLDER: /app/dev/bin
XUI_DB_FOLDER: /etc/x-ui
XUI_LOG_LEVEL: debug
XUI_DEBUG: "true"
command: ["go","run","./main.go"]