No description
  • Python 52.9%
  • JavaScript 25.1%
  • HTML 13.7%
  • CSS 7.7%
  • Dockerfile 0.6%
Find a file
yuuki 7615daf31f
Some checks failed
Build and Push Docker Image to GHCR / build-and-push (push) Has been cancelled
sitekeyを環境変数で指定可能にする
2026-04-12 09:35:06 +09:00
.devcontainer Create devcontainer.json 2025-05-16 15:12:40 +09:00
.github/workflows dockerイメージをビルドする 2025-05-16 06:02:01 +00:00
static オプションの削除 2026-04-04 16:43:58 +09:00
templates sitekeyを環境変数で指定可能にする 2026-04-12 09:35:06 +09:00
.dockerignore テーブルで統計を表示 2025-10-06 22:06:07 +09:00
.gitignore テーブルで統計を表示 2025-10-06 22:06:07 +09:00
app.py sitekeyを環境変数で指定可能にする 2026-04-12 09:35:06 +09:00
cache.py 処理の簡略化 2025-10-13 06:36:28 +09:00
cors.py 処理の簡略化 2025-10-13 06:36:28 +09:00
Dockerfile レート制限、Python、依存関係の更新 2026-02-20 16:10:11 +09:00
filters.py オプションの削除 2026-04-04 16:43:58 +09:00
ip.py IP取得ロジックの修正 2026-03-21 10:57:56 +09:00
limit.py refactor:times_wrap 2026-01-15 20:33:22 +09:00
README.md limiterのロールバック 2026-02-20 19:22:52 +09:00
requirements.txt limiterのロールバック 2026-02-20 19:22:52 +09:00
serve.py 最適化 2025-10-13 06:07:38 +09:00
user_agent.txt User Agentの更新 2025-05-31 10:02:22 +00:00

LiteY

軽量な掲示板です

デバッグの開始

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

pip install -r requirements.txt

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

docker run --detach \
  --name litey-mongo-debug \
  --volume litey-mongo-debug:/data/db \
  --publish 27017:27017 \
  mongo
docker run --detach \
  --name litey-redis-debug \
  --volume litey-redis-debug:/data \
  --publish 6379:6379 \
  redis

サーバーを起動します

fastapi dev --host 0.0.0.0

デプロイ

今すぐデプロイ!