No description
Find a file
yuuki 13fc08f4cb
Some checks failed
Build and Push Docker Image to GHCR / build-and-push (push) Has been cancelled
最新の1万曲のみ表示する
2026-01-16 16:21:02 +09:00
.devcontainer update homepage link 2024-04-28 06:50:35 +00:00
.github ownerいらなくね? 2025-05-16 05:37:34 +00:00
public 細かい調整&プレイ回数の表示を高速化 2026-01-11 19:22:02 +09:00
templates Revert "︎超絶️軽量化😤" 2026-01-15 03:51:19 +09:00
tools Add manifest to nginx.conf example 2022-11-22 17:56:27 +01:00
.dockerignore デプロイ方法をユーザーに任せる 2024-05-09 19:23:23 +00:00
.gitattributes 💥🐫 Added .gitattributes & .gitignore files 2015-07-17 17:21:53 +09:00
.gitignore /__pycache__をignore 2024-02-13 12:06:31 +09:00
app.py 最新の1万曲のみ表示する 2026-01-16 16:21:02 +09:00
config.example.py Add base directory support 2022-08-21 22:48:24 +02:00
config.py マルチプレイのURLをデフォルトに戻す 2025-12-08 10:34:52 +09:00
Dockerfile Pythonと依存関係の更新 2025-12-28 16:31:53 +09:00
README.md idouの実装 2025-10-23 02:56:29 +09:00
requirements.txt Revert "︎超絶️軽量化😤" 2026-01-15 03:51:19 +09:00
schema.py Add custom Don 2020-04-04 16:48:58 +03:00
server.py updated 2025-12-04 09:55:02 +09:00

太鼓ウェブ

この太鼓ウェブは改良版です

デバッグの開始

依存関係をインストールします

pip install -r requirements.txt

データベースを起動します

docker run --detach \
  --name taiko-web-mongo-debug \
  --volume taiko-web-mongo-debug:/data/db \
  --publish 1001:27017 \
  mongo
docker run --detach \
  --name taiko-web-redis-debug \
  --volume taiko-web-redis-debug:/data \
  --publish 1002:6379 \
  redis

サーバーを起動してください

TAIKO_WEB_MONGO_HOST=127.0.0.1:1001 TAIKO_WEB_REDIS_PORT=1002 flask run --host 0.0.0.0 --port 1000 --debug

デプロイ

今すぐデプロイ!