1
1
Fork
You've already forked bot-league-platform
0
No description
  • Go 85.8%
  • Dockerfile 7.2%
  • Shell 7%
2026年05月26日 01:36:20 +02:00
pre_commits init 2026年05月26日 01:36:20 +02:00
src init 2026年05月26日 01:36:20 +02:00
.gitignore init 2026年05月26日 01:36:20 +02:00
.golangci.yml init 2026年05月26日 01:36:20 +02:00
.pre-commit-config.yaml init 2026年05月26日 01:36:20 +02:00
Dockerfile init 2026年05月26日 01:36:20 +02:00
go.mod init 2026年05月26日 01:36:20 +02:00
LICENSE init 2026年05月26日 01:36:20 +02:00
podman-compose.dev.yaml init 2026年05月26日 01:36:20 +02:00
README.md init 2026年05月26日 01:36:20 +02:00

Bot League Platform

Development

Container

Develop inside the dev container. Build and open a shell:

podman compose -f podman-compose.dev.yaml up --build -d && \
 podman compose -f podman-compose.dev.yaml exec app /bin/sh

If Podman does not rebuild reliably, stop the stack first:

podman compose -f podman-compose.dev.yaml down

Start without rebuilding and open a shell:

podman compose -f podman-compose.dev.yaml up -d && \
 podman compose -f podman-compose.dev.yaml exec app /bin/sh

Install dependencies

go mod tidy

Pre-commit

Install pre-commit, then enable it for this repo:

pre-commit clean && pre-commit install