No description
Find a file
yuuki 5e0b89739e
Some checks are pending
Build and Push Docker Image to GHCR / build-and-push (push) Waiting to run
readme更新
2025-10-23 02:55:40 +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 IntersectionObserverを使ってレンダリングを最適化 2025-10-16 19:08:10 +09:00
templates IntersectionObserverを使ってレンダリングを最適化 2025-10-16 19:08:10 +09:00
.dockerignore テーブルで統計を表示 2025-10-06 22:06:07 +09:00
.gitignore テーブルで統計を表示 2025-10-06 22:06:07 +09:00
app.py IntersectionObserverを使ってレンダリングを最適化 2025-10-16 19:08:10 +09:00
cache.py 処理の簡略化 2025-10-13 06:36:28 +09:00
cors.py 処理の簡略化 2025-10-13 06:36:28 +09:00
Dockerfile LegacyKeyValueFormatなおす 2025-10-12 23:43:34 +09:00
filters.py 年齢計算fix 2025-10-15 09:13:05 +09:00
ip.py 最適化 2025-10-13 06:07:38 +09:00
limit.py 最適化 2025-10-13 06:07:38 +09:00
README.md readme更新 2025-10-23 02:55:40 +09:00
requirements.txt pur 2025-10-13 00:00:37 +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 3001:27017 \
  mongo
docker run --detach \
  --name litey-redis-debug \
  --volume litey-redis-debug:/data/db \
  --publish 3002:6379 \
  redis

サーバーを起動します

MONGO_URI=mongodb://127.0.0.1:3001/ REDIS_URI=redis://127.0.0.1:3002/ fastapi dev --host 0.0.0.0 --port 3000

デプロイ

今すぐデプロイ!